Cargo Features

[dependencies]
futures-channel = { version = "0.3.30", default-features = false, features = ["std", "alloc", "sink", "unstable", "cfg-target-has-atomic"] }
default = std

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

std default = alloc

Enables std of futures-core

Affects futures-channel::mpsc

alloc std

Enables alloc of futures-core

Affects futures-channel::oneshot

sink = futures-sink
unstable

These features are no longer used.
TODO: remove in the next major version.

cfg-target-has-atomic

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.

futures-sink sink?