example = []
[badges.maintenance]
status = "actively-developed"
[badges.travis-ci]
repository = "najamelan/async_executors"
[build-dependencies.rustc_version]
version = "^0.2"
[dependencies.async_std_crate]
optional = true
package = "async-std"
version = "^1"
[dependencies.futures-channel]
optional = true
version = "^0.3"
[dependencies.futures-core]
optional = true
version = "^0.3"
[dependencies.futures-executor]
optional = true
version = "^0.3"
[dependencies.futures-task]
version = "^0.3"
[dependencies.futures-util]
optional = true
version = "^0.3"
[dependencies.parking_lot]
optional = true
version = "^0.10"
[dependencies.pin-utils]
optional = true
version = "0.1.0-alpha"
[dependencies.tokio]
optional = true
version = "^0.2"
[dependencies.tracing-futures]
features = ["futures-03"]
optional = true
version = "^0.2"
[dependencies.wasm-bindgen-futures]
optional = true
version = "^0.4"
[dev-dependencies.futures]
features = ["thread-pool"]
version = "^0.3"
[dev-dependencies.static_assertions]
version = "^1"
[features]
async_std = ["async_std_crate"]
bindgen = ["wasm-bindgen-futures"]
default = ["notwasm"]
localpool = ["futures-executor"]
notwasm = []
spawn_handle = ["futures-util", "futures-channel", "futures-core", "pin-utils"]
threadpool = ["futures-executor/thread-pool"]
tokio_ct = ["tokio/rt-core", "tokio/rt-util"]
tokio_tp = ["tokio/rt-threaded", "parking_lot"]
tracing = ["tracing-futures"]
[package]
authors = ["Naja Melan <najamelan@autistici.org>"]
categories = ["asynchronous", "concurrency"]
description = "Implements Spawn, SpawnLocal and SpawnHandle for commonly used executors."
documentation = "https://docs.rs/async_executors"
edition = "2018"
exclude = ["examples", "tests", "TODO.md", "deny.toml", ".travis.yml", "CONTRIBUTING.md"]
keywords = ["async", "executor", "futures"]
license = "Unlicense"
name = "async_executors"
readme = "README.md"
repository = "https://github.com/najamelan/async_executors"
version = "0.2.1"
[package.metadata.docs.rs]
all-features = true
targets = []
[profile.release]
codegen-units = 1
[target."cfg(target_arch = \"wasm32\")".dev-dependencies.wasm-bindgen-test]
version = "^0.3"