Cargo Features

[dependencies]
collection_tools = { version = "0.8.0", default-features = false, features = ["no_std", "use_alloc", "full", "enabled", "collection_constructors", "collection_into_constructors"] }
default = collection_constructors, collection_into_constructors, enabled

These default features are set whenever collection_tools is added without default-features = false somewhere in the dependency tree.

no_std dev use_alloc?

Enables no_std of test_tools

use_alloc = hashbrown, no_std
full = collection_constructors, collection_into_constructors, enabled
enabled default full?

Affects collection_tools::dependency, collection_tools::protected, collection_tools::orphan, collection_tools::exposed, collection_tools::prelude

collection_constructors default full?

Collection constructors, like hmap!{ "key" => "val" }

collection_into_constructors default full?

Collection constructors, using into() under the hood, like into_hmap!( "key" => "val" )

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.

qqq : is this feature used? seems not. if yes, what is it responsible for? discuss -- not needed, removed

hashbrown use_alloc?

Enables hashbrown

external