Cargo Features
[dependencies]
flexible-locks = { version = "0.1.0", default-features = false, features = ["std", "parking_lot"] }
- default = std
-
The
std
feature is set by default wheneverflexible-locks
is added without
somewhere in the dependency tree.default-features = false - std default
Features from optional dependencies
- parking_lot implicit feature
-
Enables parking_lot ^0.5
parking_lot:
More compact and efficient implementations of the standard synchronization primitives
Affects
flexible-locks::ParkingLotMutex
…