Cargo Features

[dependencies]
supply-chain-trust-example-crate-000051 = { version = "0.8.4", default-features = false, features = ["std", "alloc"] }
default = std

The std feature is set by default whenever supply-chain-trust-example-crate-000051 is added without default-features = false somewhere in the dependency tree.

std default = alloc

Enables std of crossbeam-channel, crossbeam-deque, crossbeam-epoch, crossbeam-queue, and crossbeam-utils

crossbeam-channel:

Enable to use APIs that require std. This is enabled by default.

NOTE: Disabling std feature is not supported yet.

alloc std

Enables alloc of crossbeam-epoch and crossbeam-queue

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.

Features from optional dependencies

In crates that don't use the dep: syntax, optional dependencies automatically become Cargo features. These features may have been created by mistake, and this functionality may be removed in the future.

crossbeam-channel std
crossbeam-deque std
crossbeam-epoch alloc? std
crossbeam-queue alloc? std