Cargo Features

[dependencies]
executor-core = { version = "0.7.1", default-features = false, features = ["std", "async-task", "async-executor", "smol", "tokio", "full"] }
default = std

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

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