Cargo Features
[dependencies]
single_byte_hashmap = { version = "0.1.2", default-features = false, features = ["faster_hashmap", "rayon", "nightly", "allow_unsafe_sizes", "serde"] }
- default = faster_hashmap
-
The
faster_hashmap
feature is set by default wheneversingle_byte_hashmap
is added without
somewhere in the dependency tree.default-features = false - faster_hashmap default nightly? rayon? serde? = hashbrown
- rayon = faster_hashmap
-
Enables rayon of hashbrown ^0.11
- nightly = faster_hashmap
-
Enables nightly of hashbrown ^0.11
hashbrown:
Enables use of nightly features. This is only guaranteed to work on the latest version of nightly Rust.
- allow_unsafe_sizes
- serde = faster_hashmap
-
Enables serde of hashbrown ^0.11
Features from optional dependencies
In crates that don't use the dep:
syntax, optional dependencies automatically become Cargo features. These features may have been created by mistake, and this functionality may be removed in the future.
- hashbrown faster_hashmap nightly? rayon? serde?
-
Enables hashbrown ^0.11