-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
40 lines (34 loc) · 1.17 KB
/
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
34
35
36
37
38
39
40
[package]
name = "qfilter"
version = "0.2.1"
description = "Efficient bloom filter like datastructure, based on the Rank Select Quotient Filter (RSQF)"
repository = "https://github.com/arthurprs/qfilter"
authors = ["Arthur Silva <[email protected]>"]
edition = "2021"
license = "MIT"
keywords = ["rsqf", "cqf", "quotient-filter", "bloom-filter", "cuckoo-filter"]
categories = ["data-structures"]
readme = "README.md"
exclude = ["fuzz", "benches"]
[features]
default = []
# Enable to support running on x64 cpus released before 2008
legacy_x86_64_support = []
jsonschema = ["schemars"]
serde = ["dep:serde", "dep:serde_bytes"]
[dependencies]
xxhash-rust = { version = "0.8.12", features = ["xxh3"] }
serde = { optional = true, version = "1", features = ["derive"] }
serde_bytes = { optional = true, version = "0.11" }
schemars = { optional = true, version = "0.8" }
[dev-dependencies]
serde_cbor = "0.11"
qfilter01 = { package = "qfilter", version = "0.1", features = ["serde"] }
[profile.bench]
opt-level = 3
debug = true
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(fuzzing)'] }
[package.metadata.docs.rs]
features = ["stats"]
rustdoc-args = ["--cfg", "docsrs"]