Cargo Features
[dependencies]
executor-core = { version = "0.7.1", default-features = false, features = ["std", "async-task", "async-executor", "smol", "tokio", "full"] }
- default = std
-
The
stdfeature is set by default wheneverexecutor-coreis added withoutsomewhere in the dependency tree.default-features = false - std default async-executor? full? tokio?
-
Enables std of optional async-task
Affects
async_task::spawn_local… - async-task async-executor? full? smol?
-
Enables async-task
Affects
executor-core::async_task… - async-executor full? = async-task, std
-
Enables async-executor
Affects
executor-core::async_executor… - smol = async-task
-
Enables smol
Affects
executor-core::smol… - tokio full? = std
-
Enables tokio
Affects
executor-core::tokio… - full = async-executor, async-task, std, tokio
-
Feature flag for enabling all compatible features