Cargo Features
[dependencies]
crossbeam-channel = { version = "0.5.14", default-features = false, features = ["std"] }
- default = std
-
The
std
feature is set by default whenevercrossbeam-channel
is added without
somewhere in the dependency tree.default-features = false - std default
-
Enable to use APIs that require
std
. This is enabled by default.NOTE: Disabling
std
feature is not supported yet.Enables std of crossbeam-utils
Affects
crossbeam-channel::internal
…