async-executor 1.13.1

Async executor
Documentation
[[bench]]
harness = false
name = "executor"
path = "benches/executor.rs"
required-features = ["static"]

[dependencies.async-task]
version = "4.4.0"

[dependencies.concurrent-queue]
version = "2.5.0"

[dependencies.fastrand]
version = "2.0.0"

[dependencies.futures-lite]
default-features = false
version = "2.0.0"

[dependencies.slab]
version = "0.4.4"

[dev-dependencies.async-channel]
version = "2.0.0"

[dev-dependencies.async-io]
version = "2.1.0"

[dev-dependencies.async-lock]
version = "3.0.0"

[dev-dependencies.criterion]
default-features = false
features = ["cargo_bench_support"]
version = "0.5"

[dev-dependencies.easy-parallel]
version = "3.1.0"

[dev-dependencies.fastrand]
version = "2.0.0"

[dev-dependencies.futures-lite]
version = "2.0.0"

[dev-dependencies.once_cell]
version = "1.16.0"

[[example]]
name = "limit"
path = "examples/limit.rs"

[[example]]
name = "priority"
path = "examples/priority.rs"

[features]
static = []

[lib]
name = "async_executor"
path = "src/lib.rs"

[package]
authors = ["Stjepan Glavina <stjepang@gmail.com>", "John Nunley <dev@notgull.net>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["asynchronous", "concurrency"]
description = "Async executor"
edition = "2021"
exclude = ["/.*"]
keywords = ["asynchronous", "executor", "single", "multi", "spawn"]
license = "Apache-2.0 OR MIT"
name = "async-executor"
readme = "README.md"
repository = "https://github.com/smol-rs/async-executor"
rust-version = "1.63"
version = "1.13.1"

[package.metadata.docs.rs]
all-features = true

[target.'cfg(target_family = "wasm")'.dependencies.futures-lite]
default-features = false
features = ["std"]
version = "2.0.0"

[[test]]
name = "different_executors"
path = "tests/different_executors.rs"

[[test]]
name = "drop"
path = "tests/drop.rs"

[[test]]
name = "larger_tasks"
path = "tests/larger_tasks.rs"

[[test]]
name = "local_queue"
path = "tests/local_queue.rs"

[[test]]
name = "panic_prop"
path = "tests/panic_prop.rs"

[[test]]
name = "spawn_many"
path = "tests/spawn_many.rs"