-
Notifications
You must be signed in to change notification settings - Fork 17
/
Cargo.toml
49 lines (44 loc) · 1.07 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
[package]
name = "pdatastructs"
version = "0.7.0"
authors = ["Marco Neumann <[email protected]>"]
license = "MIT/Apache-2.0"
keywords = [
"filter",
"probabilistic",
"sampling",
"sketch",
]
categories = ["data-structures"]
description = "Simple probabilistic data structures"
repository = "https://github.com/crepererum/pdatastructs.rs"
documentation = "https://docs.rs/pdatastructs/"
readme = "README.md"
edition = "2021"
[dependencies]
bytecount = { version = "0.6", features = ["runtime-dispatch-simd"], optional = true }
fixedbitset = { version = "0.5", optional = true }
num-traits = { version = "^0.2.4", optional = true }
rand = { version = "0.8", optional = true }
succinct = { version = "^0.5", optional = true }
serde = { version = "1.0", optional = true }
[dev-dependencies]
criterion = "0.5"
rand_chacha = "0.3"
rand_distr = "0.4"
serde_json = "1.0"
[features]
default = [
"bytecount",
"fixedbitset",
"num-traits",
"rand",
"succinct",
"serde",
]
[[bench]]
name = "filters"
harness = false
[[bench]]
name = "hyperloglog"
harness = false