Cargo Features
[dependencies]
vec-collections = { version = "0.4.3", default-features = false, features = ["inplace", "total", "radixtree", "lazy_radixtree", "rkyv_validated", "std_support", "serde"] }
- default = inplace, serde
-
These default features are set whenever
vec-collections
is added without
somewhere in the dependency tree.default-features = false - inplace default
- total
-
Affects
vec-collections::total_vec_map
,vec-collections::total_vec_set
… - radixtree
-
Affects
vec-collections::radix_tree
… - lazy_radixtree = parking_lot
- rkyv_validated = bytecheck, rkyv
-
Affects
vec_map::ArchivedVecMapError
,vec_set::ArchivedVecSetError
… - std_support
-
Affects
vec-collections::btree_map
…
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.
- serde default
- rkyv rkyv_validated?
-
Enables rkyv ^0.7.18
Affects
vec_map::ArchivedVecMap
,vec_set::ArchivedVecSet
… - bytecheck rkyv_validated?
-
Enables bytecheck ^0.6.5
- parking_lot lazy_radixtree?
-
Enables parking_lot ^0.11.2