Cargo Features
[dependencies]
anymap = { version = "1.0.0-beta.2", default-features = false, features = ["std", "hashbrown"] }
- default = std
-
The
std
feature is set by default wheneveranymap
is added without
somewhere in the dependency tree.default-features = false - std default
Features from optional dependencies
- hashbrown implicit feature
-
Enables hashbrown >=0.1.1, <0.13
The hashbrown feature, disabled by default, is exposed under different stability guarantees than the usual SemVer ones: by preference the version range will only be extended, but it may be shrunk in a MINOR release. See README.md.
Affects
anymap::hashbrown
…