Cargo Features
[dependencies]
collect-with = { version = "0.0.2", default-features = false, features = ["std", "try", "collect_vec", "ahash", "indexmap", "all"] }
- default = collect_vec, try
-
These default features are set whenever
collect-with
is added without
somewhere in the dependency tree.default-features = false - std ahash? all? indexmap?
-
-----
- try default all?
-
-----
- collect_vec default all?
-
Affects
try_collect::TryCollectWith.try_collect_vec_with
… - ahash all? = std
-
Enables ahash
Affects
collect_index::CollectIndex.collect_indexmap_with
,collect_index::CollectIndex.collect_indexset_with
… - indexmap all? = std
-
Enables indexmap
- all = ahash, collect_vec, indexmap, std, try
-
-----