Cargo Features
[dependencies]
mycelium_experimental = { version = "0.1.0", default-features = false, features = ["std", "alloc"] }
- default = std
-
The
std
feature is set by default whenevermycelium_experimental
is added without
somewhere in the dependency tree.default-features = false - std default
-
Enables std of crossbeam-epoch ^0.7 and crossbeam-utils ^0.6
crossbeam-epoch:
Enable to use APIs that require
std
. This is enabled by default. - alloc
-
Enables alloc of crossbeam-epoch ^0.7 and crossbeam-utils ^0.6
crossbeam-epoch:
Enable to use APIs that require
alloc
. This is enabled by default and also enabled if thestd
feature is enabled.NOTE: Disabling both
std
andalloc
features is not supported yet.
mycelium_experimental has 3 features without comments.