-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
33 lines (28 loc) · 921 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "scalable_cuckoo_filter"
edition = "2021"
version = "0.3.2"
authors = ["Takeru Ohta <phjgt308@gmail.com>"]
description = "A variant of Cuckoo Filter whose size automatically scales as necessary"
homepage = "https://github.com/sile/scalable_cuckoo_filter"
repository = "https://github.com/sile/scalable_cuckoo_filter"
readme = "README.md"
keywords = ["cuckoo-filter", "bloom-filter"]
categories = ["data-structures"]
license = "MIT"
[features]
serde_support = ["serde","serde_bytes"]
[badges]
coveralls = {repository = "sile/scalable_cuckoo_filter"}
[dependencies]
rand = "0.8"
siphasher = "1"
serde = { version = "1.0", default-features = false, optional = true, features = ["derive"] }
serde_bytes = { version = "0.11", optional = true }
[dev-dependencies]
criterion = "0.5"
mimalloc = { version = "0.1", default-features = false }
serde_json = "1.0"
[[bench]]
name = "scalability"
harness = false