Cargo Features
[dependencies]
backdrop_arc = { version = "0.3.0", default-features = false, features = ["std", "serde", "stable_deref_trait", "unsize", "arc-swap", "triomphe", "yoke"] }
- default = std
-
The
std
feature is set by default wheneverbackdrop_arc
is added without
somewhere in the dependency tree.default-features = false - std default
Features from optional dependencies
- serde implicit feature
-
Enables serde
serde:
A generic serialization/deserialization framework
- stable_deref_trait implicit feature
- unsize implicit feature
-
Enables unsize
unsize:
A stable alternative to CoerceUnsize
- arc-swap implicit feature
-
Enables arc-swap
arc-swap:
Atomically swappable Arc
- triomphe implicit feature
- yoke implicit feature
-
Enables yoke
yoke:
Abstraction allowing borrowed data to be carried along with the backing data it borrows from