forked from Cydhra/vers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
84 lines (68 loc) · 1.55 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
73
74
75
76
77
78
79
80
81
82
83
84
[package]
name = "vers-vecs"
version = "1.1.0"
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", "bit-vector", "elias-fano", "rmq", "sequence"]
categories = ["data-structures", "algorithms"]
exclude = [
"images/*",
]
[dependencies]
serde = { version = "1.0", optional = true, features = ["derive"] }
[dev-dependencies]
# benchmarking
criterion = { version = "0.5.1", features = ["html_reports"] }
rand = "0.8"
# comparison benchmarks libraries
rsdict = { version = "0.0.7", features = ["simd"] }
bio = "1.4"
bv = "0.11"
fid = "0.1"
indexed_bitvec = "4.0"
succinct = "0.5"
elias-fano = "1.1"
range_minimum_query = "0.1"
librualg = "0.29"
sucds = "0.8"
[[bench]]
name = "rank_benchmark"
harness = false
[[bench]]
name = "comparison_benchmark"
harness = false
[[bench]]
name = "select_benchmark"
harness = false
[[bench]]
name = "select_iter_benchmark"
harness = false
[[bench]]
name = "worst_select_benchmark"
harness = false
[[bench]]
name = "elias_fano_benchmark"
harness = false
[[bench]]
name = "worst_ef_benchmark"
harness = false
[[bench]]
name = "ef_comparison_benchmark"
harness = false
[[bench]]
name = "rmq_comparison_benchmark"
harness = false
[[bench]]
name = "rmq_benchmark"
harness = false
[[bench]]
name = "rsvec_iter_benchmark"
harness = false
[profile.bench]
lto = true
[profile.release]
lto = true