summaryrefslogtreecommitdiffstats
path: root/build/rust/hashbrown/Cargo.toml
blob: be365ea103e78bd0744d9acceaaf24865e6d1aa4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[package]
name = "hashbrown"
version = "0.13.999"
edition = "2021"

[lib]
path = "lib.rs"

[features]
# N.B., not using `hashbrown/default` because it includes `hashbrown/allocator-api2`, which we want
# to avoid.
default = ["ahash", "inline-more"]
ahash = ["hashbrown/ahash"]
inline-more = ["hashbrown/inline-more"]
raw = ["hashbrown/raw"]

[dependencies.hashbrown]
version = "0.14.3"
default-features = false