Cargo Features

[dependencies]
mycelium_experimental = { version = "0.1.0", default-features = false, features = ["std", "alloc"] }
default = std

The std feature is set by default whenever mycelium_experimental is added without default-features = false somewhere in the dependency tree.

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 the std feature is enabled.

NOTE: Disabling both std and alloc features is not supported yet.

mycelium_experimental has 3 features without comments.