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 whenever single_byte_hashmap is added without default-features = false somewhere in the dependency tree.

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

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