-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
60 lines (54 loc) · 1.64 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
[package]
name = "ptr_hash"
version = "0.1.1"
edition = "2021"
license = "MIT"
authors = ["Ragnar Groot Koerkamp"]
repository = "https://github.com/RagnarGrootKoerkamp/ptrhash"
homepage = "https://github.com/RagnarGrootKoerkamp/ptrhash"
description = "A minimal perfect hash function adapted from PTHash"
readme = "readme.md"
keywords = ["hashing", "minimal", "perfect", "mphf"]
categories = ["data-structures", "science"]
include = ["src/**/*", "examples/*", "readme.md"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
# Things are _slightly_ faster without debug symbols, but they're nice for debugging.
debug = true
# Needed for good inlining across crates, in particular murmur2.
lto = "thin"
incremental = true
[dependencies]
anyhow = "1.0.75"
bitvec = "1.0.1"
clap = { version = "4.4.6", features = ["derive"] }
colored = "2.0.4"
common_traits = "0.10.0"
either = "1.9.0"
epserde = { version = "0.2.2", optional = true }
epserde-derive = {version = "0.2.0", optional = true }
itertools = "0.11.0"
lazy_static = "1.4.0"
radsort = "0.1.0"
rand = "0.8.5"
rand_chacha = "0.3.1"
rayon = "1.8.0"
rdst = "0.20.11"
rustc-hash = "1.1.0"
sucds = "0.8.0"
tempfile = "3.8.1"
fastrand = "2.0.1"
cacheline-ef = { git = "https://github.com/ragnargrootkoerkamp/cacheline-ef" }
# Default included hash functions
cityhash-102-rs = "0.1.0"
fastmurmur3 = "0.2.0"
fxhash = "0.2.1"
hashers = "1.0.1"
highway = "1.1.0"
metrohash = "1.0.6"
murmur2 = "0.1.0"
murmur3 = "0.5.2"
wyhash = "0.5.0"
xxhash-rust = {version = "0.8.7", features = ["xxh64", "xxh3"]}
[features]
epserde = ["dep:epserde", "dep:epserde-derive"]