-
Notifications
You must be signed in to change notification settings - Fork 40
/
Cargo.toml
59 lines (46 loc) · 1.27 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
[package]
name = "twox-hash"
version = "2.0.1"
authors = ["Jake Goulding <[email protected]>"]
edition = "2021"
rust-version = "1.81"
description = "A Rust implementation of the XXHash and XXH3 algorithms"
readme = "README.md"
keywords = ["hash", "hasher", "xxhash", "xxh3"]
categories = ["algorithms"]
repository = "https://github.com/shepmaster/twox-hash"
documentation = "https://docs.rs/twox-hash/"
license = "MIT"
[workspace]
members = [
"asmasm",
"comparison",
"twox-hash-sum",
"xx_hash-sys",
]
#END-[workspace]
[features]
default = ["random", "xxhash32", "xxhash64", "xxhash3_64", "std"]
random = ["dep:rand"]
serialize = ["dep:serde"]
xxhash32 = []
xxhash64 = []
xxhash3_64 = []
std = ["alloc"]
alloc = []
[lints.rust.unexpected_cfgs]
level = "warn"
check-cfg = [
'cfg(_internal_xxhash3_force_scalar)',
'cfg(_internal_xxhash3_force_neon)',
'cfg(_internal_xxhash3_force_sse2)',
'cfg(_internal_xxhash3_force_avx2)',
]
[dependencies]
rand = { version = "0.8.0", optional = true, default-features = false, features = ["std", "std_rng"] }
serde = { version = "1.0.0", optional = true, default-features = false, features = ["derive"] }
[dev-dependencies]
serde_json = "1.0.117"
#END-[dev-dependencies]
[package.metadata.docs.rs]
all-features = true