-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
43 lines (37 loc) · 851 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
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "rsdict"
version = "0.0.8"
authors = ["Sujay Jayakar <sujayakar314@gmail.com>"]
description = "Fast static rank and select data structure"
repository = "https://github.com/sujayakar/rsdict"
homepage = "https://github.com/sujayakar/rsdict"
readme = "README.md"
license = "MIT/Apache-2.0"
keywords = ["rank", "select", "succinct"]
categories = ["data-structures"]
edition = "2018"
[profile.release]
overflow-checks = true
debug-assertions = true
debug = true
[features]
default = []
fuzz = ["afl"]
simd = []
[dependencies.afl]
version = "0.13.3"
optional = true
[dev-dependencies]
quickcheck = "1.0.3"
quickcheck_macros = "1.0.0"
criterion = "0.5"
rand = "0.8"
succinct = "0.5.2"
[[bench]]
name = "rank_select"
harness = false
[[test]]
name = "rsdict_fuzz"
path = "src/rsdict_fuzz.rs"
required-features = ["fuzz"]
harness = false