Cargo Features
[dependencies]
hash_table_datastruct = { version = "0.6.3", default-features = false, features = ["hashbrown-serde"] }
- default = serde
-
The
serde
feature is set by default wheneverhash_table_datastruct
is added without
somewhere in the dependency tree.default-features = false - hashbrown-serde = hashbrown, serde
-
Enables serde of hashbrown ^0.14.1
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 hashbrown-serde?
-
Enables hashbrown ^0.14.1
- serde default hashbrown-serde?
-
Affects
table::serde_impls
…