Cargo Features

[dependencies]
async_job = { version = "0.1.4", default-features = false, features = ["rt", "rt-multi-thread"] }
default = rt-multi-thread

The rt-multi-thread feature is set by default whenever async_job is added without default-features = false somewhere in the dependency tree.

rt

Enables rt of tokio

tokio:

Includes basic task execution capabilities

rt-multi-thread default

Enables rt-multi-thread of tokio

async_job has 3 features without comments.