Cargo Features
[dependencies]
caches = { version = "0.2.8", default-features = false, features = ["std", "nightly", "hashbrown"] }
- default = std
-
The
std
feature is set by default whenevercaches
is added without
somewhere in the dependency tree.default-features = false - std default = rand
-
Enables std and std_rng of rand and std of bitvec
bitvec:
The standard library includes the allocator.
- nightly
-
rand:
some additions requiring nightly Rust
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 implicit feature
-
Enables hashbrown ^0.14
hashbrown:
A Rust port of Google's SwissTable hash map
- rand nightly? std