-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
72 lines (58 loc) · 1.45 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[package]
name = "vers-vecs"
version = "1.5.1"
edition = "2021"
authors = ["Johannes \"Cydhra\" Hengstler"]
description = "A collection of succinct data structures supported by fast implementations of rank and select queries."
readme = "readme.md"
repository = "https://github.com/Cydhra/vers"
license = "MIT OR Apache-2.0"
keywords = ["succinct", "elias-fano", "bitvector", "rank", "wavelet-matrix"]
categories = ["data-structures", "algorithms"]
documentation = "https://docs.rs/vers-vecs"
exclude = [
"images/*",
".github/*",
]
[dependencies]
serde = { version = "1.0", optional = true, features = ["derive"] }
[dev-dependencies]
# benchmarking
criterion = { version = "0.5.1", features = ["html_reports"] }
rand = { version = "0.8", features = ["alloc"] }
[features]
simd = []
docsrs = [] # special feature for docs.rs to enable doc_auto_cfg on nightly
[[bench]]
name = "rank"
harness = false
[[bench]]
name = "select"
harness = false
[[bench]]
name = "select_iter"
harness = false
[[bench]]
name = "select_adversarial"
harness = false
[[bench]]
name = "sparse_equals"
harness = false
[[bench]]
name = "elias_fano"
harness = false
[[bench]]
name = "elias_fano_adversarial"
harness = false
[[bench]]
name = "elias_fano_iterator"
harness = false
[[bench]]
name = "rmq"
harness = false
[profile.bench]
lto = true
[package.metadata.docs.rs]
all-features = true
rustc-args = ["-C", "target-cpu=native"]
rustdoc-args = ["-C", "target-cpu=native", "--cfg", "docsrs"]