Cargo Features
[dependencies]
edge-executor = { version = "0.4.1", default-features = false, features = ["std", "critical-section", "portable-atomic", "unbounded"] }
- default = std
-
The
stdfeature is set by default wheneveredge-executoris added withoutsomewhere in the dependency tree.default-features = false - std default
-
Enables std of futures-lite ^1 and once_cell
once_cell:
Enables
once_cell::syncmodule. - critical-section
-
Enables critical-section of once_cell and optional portable-atomic
once_cell:
Uses
critical-sectionto implementsyncmodule. in#![no_std]mode. Please readcritical-sectiondocs carefully before enabling this feature.portable-atomicfeature is enabled for backwards compatibility. - portable-atomic = heapless, portable-atomic-util
-
Enables portable-atomic and portable-atomic of async-task, atomic-waker, and optional heapless ^0.8
heapless:
Enable polyfilling of atomics via
portable-atomic.portable-atomicpolyfills some functionality by default, but to get full atomics you must enable one of its features to tell it how to do it. Seeportable-atomicdocumentation for details. - unbounded
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.