Cargo.toml (630B)
1 [package] 2 name = "hashbrown" 3 version = "0.14.999" 4 edition = "2021" 5 6 [lib] 7 path = "lib.rs" 8 9 [features] 10 default = ["hashbrown/default"] 11 allocator-api2 = ["hashbrown/allocator-api2"] 12 ahash = [ 13 # No direct equivalent in 0.15.*. However, the `ahash` feature made it so `DefaultHashBuilder` 14 # was a real struct that implemented `BuildHasher`, `Default`, etc. 15 # Enable 0.15.* `default-hasher` feature, which does the same. 16 "hashbrown/default-hasher" 17 ] 18 inline-more = ["hashbrown/inline-more"] 19 raw = ["hashbrown/raw-entry"] 20 serde = ["hashbrown/serde"] 21 22 [dependencies.hashbrown] 23 version = "0.15.2" 24 default-features = false