-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
69 lines (59 loc) · 1.62 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
[package]
name = "entropy-map"
version = "1.1.0"
edition = "2021"
authors = [
"Alex Bocharov <bocharov.alexandr@gmail.com>",
"Austin Hartzheim <inbox@austinhartzheim.me>"
]
description = "Ultra-low latency hash map using minimal perfect hash functions and compact encoding of values, minimizing memory footprint and storage size for efficient data retrieval."
documentation = "https://docs.rs/entropy-map"
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/cloudflare/entropy-map"
keywords = ["map", "hashing", "minimal", "perfect", "mphf"]
categories = ["algorithms", "data-structures"]
[dependencies]
bitpacking = "0.9.2"
bytecheck = { version = "~0.6.8", default-features = false, optional = true }
num = "0.4.1"
rkyv = { version = "0.7.42", features = ["validation", "strict"], optional = true }
wyhash = "0.5.0"
[dev-dependencies]
bitvec = "1.0.1"
criterion = { version = "0.5.1", features = ["html_reports"] }
paste = "1.0.14"
proptest = "1.4.0"
rand = "0.8.5"
rand_chacha = "0.3.1"
rkyv = { version = "0.7.42", features = ["validation", "strict"] }
test-case = "3.3.1"
[features]
default = []
rkyv_derive = ["rkyv", "bytecheck"]
[[bench]]
name = "rank"
harness = false
[[bench]]
name = "mphf"
harness = false
required-features = ["rkyv_derive"]
[[bench]]
name = "map_with_dict"
harness = false
required-features = ["rkyv_derive"]
[[bench]]
name = "map_with_dict_bitpacked"
harness = false
required-features = ["rkyv_derive"]
[[bench]]
name = "set"
harness = false
required-features = ["rkyv_derive"]
[profile.bench]
debug = true
[profile.release]
codegen-units = 1
debug = true
lto = "fat"
opt-level = 3