Cargo Features

[dependencies]
stable-map = { version = "0.15.0", default-features = false, features = ["default-hasher", "inline-more", "equivalent", "serde"] }
default = default-hasher, equivalent, inline-more

These default features are set whenever stable-map is added without default-features = false somewhere in the dependency tree.

default-hasher default

Enables default-hasher of hashbrown

hashbrown:

Provides a default hasher. Currently this is foldhash but this is subject to change in the future. Note that the default hasher does *not* provide HashDoS resistance, unlike the one in the standard library.

inline-more default

Enables inline-more of hashbrown

hashbrown:

Enables usage of #[inline] on far more functions than by default in this crate. This may lead to a performance increase but often comes at a compile time cost.

equivalent default

Enables equivalent of hashbrown

serde

Enables serde, serde of hashbrown

StableMap has 5 features without comments.