-
Notifications
You must be signed in to change notification settings - Fork 18
/
Cargo.toml
54 lines (43 loc) · 1.29 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[package]
name = "xorfilter-rs"
version = "0.6.0"
description = "Xor Filters: Faster and Smaller Than Bloom and Cuckoo Filters"
repository = "https://github.com/bnclabs/xorfilter"
documentation = "https://docs.rs/xorfilter-rs"
keywords = ["xorfilter", "bloom", "bitmap", "data-structures"]
categories = ["algorithms", "database", "data-structures"]
homepage = "https://github.com/bnclabs/xorfilter"
authors = ["prataprc <prataprc@gmail.com>"]
license = "Apache-2.0"
edition = "2018"
readme = "README.md"
[profile.release]
debug = true
[profile.bench]
debug = true
[lib]
name = "xorfilter"
[[bin]]
name = "perf"
required-features = ["perf", "cbordata"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
cbordata = { version = "0.6.0", optional = true }
structopt = { version = "0.3.20", default-features = false, optional = true }
rand = { version = "0.7.3", features = ["small_rng"], optional = true }
[dev-dependencies]
criterion = "0.3"
rand = { version = "0.7.3", features = ["small_rng"] }
[[bench]]
name = "xor_bench"
harness = false
[[bench]]
name = "fuse8_bench"
harness = false
[[bench]]
name = "fuse16_bench"
harness = false
[features]
perf = ["structopt", "rand", "cbordata"]
[badges]
maintenance = { status = "actively-developed" }