Cargo Features
[dependencies]
anymap3 = { version = "1.0.0", default-features = false, features = ["std", "hashbrown"] }
- default = std
-
The
std
feature is set by default wheneveranymap3
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
anymap3::hashbrown
…