Files

141 lines
2.6 KiB
TOML

# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.
[package]
edition = "2021"
rust-version = "1.63"
name = "async-executor"
version = "1.13.3"
authors = [
"Stjepan Glavina <stjepang@gmail.com>",
"John Nunley <dev@notgull.net>",
]
build = false
exclude = ["/.*"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Async executor"
readme = "README.md"
keywords = [
"asynchronous",
"executor",
"single",
"multi",
"spawn",
]
categories = [
"asynchronous",
"concurrency",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/smol-rs/async-executor"
[package.metadata.docs.rs]
all-features = true
[features]
static = []
[lib]
name = "async_executor"
path = "src/lib.rs"
[[example]]
name = "limit"
path = "examples/limit.rs"
[[example]]
name = "priority"
path = "examples/priority.rs"
[[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"
[[bench]]
name = "executor"
path = "benches/executor.rs"
harness = false
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]
version = "2.0.0"
default-features = false
[dependencies.pin-project-lite]
version = "0.2"
[dependencies.slab]
version = "0.4.7"
[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]
version = "0.7"
features = ["cargo_bench_support"]
default-features = false
[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"
[target.'cfg(target_family = "wasm")'.dependencies.futures-lite]
version = "2.0.0"
features = ["std"]
default-features = false