-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
32 lines (26 loc) · 841 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
[package]
name = "sbbf-rs"
version = "0.2.8"
edition = "2021"
license = "MIT"
description = "Split block bloom filter implementation"
homepage = "https://github.com/ozgrakkurt/sbbf-rs"
repository = "https://github.com/ozgrakkurt/sbbf-rs"
authors = ["Ozgur Akkurt <[email protected]>"]
[dependencies]
fastrange-rs = "0.1"
[target.'cfg(any(target_arch = "x86_64", target_arch = "x86"))'.dependencies]
cpufeatures = "0.2"
[dev-dependencies]
rand = "0.8"
xxhash-rust = { version = "0.8", features = ["xxh3"] }
parquet2 = { version = "0.17", default-features = false, features = ["bloom_filter"] }
[target.'cfg(not(target_family = "wasm"))'.dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
[[bench]]
name = "bench"
path = "benches/bench.rs"
harness = false
[profile.release]
codegen-units = 1
lto = true