Cargo Features
[dependencies]
slice-deque = { version = "0.3.0", default-features = false, features = ["use_std", "unix_sysv"] }
- default = use_std
-
The
use_std
feature is set by default wheneverslice-deque
is added without
somewhere in the dependency tree.default-features = false - use_std default
-
Enables features that require the standard library
- unix_sysv
-
Uses a super-portable but potentially slower System V interprocess shared-memory implementation instead of system-specific ones on unix-like targets.