[package] name = "tokio-threadpool" # When releasing to crates.io: # - Remove path dependencies # - Update html_root_url. # - Update doc url # - Cargo.toml # - README.md # - Update CHANGELOG.md. # - Create "v0.2.x" git tag. version = "0.2.0-alpha.1" edition = "2018" documentation = "https://docs.rs/tokio-threadpool/0.2.0-alpha.1/tokio_threadpool" repository = "https://github.com/tokio-rs/tokio" homepage = "https://github.com/tokio-rs/tokio" license = "MIT" authors = ["Tokio Contributors "] description = """ A task scheduler backed by a work-stealing thread pool. """ keywords = ["futures", "tokio"] categories = ["concurrency", "asynchronous"] [dependencies] tokio-executor = { version = "=0.2.0-alpha.1", path = "../tokio-executor" } tokio-sync = { version = "=0.2.0-alpha.1", path = "../tokio-sync" } futures-core-preview = "=0.3.0-alpha.17" futures-util-preview = "=0.3.0-alpha.17" crossbeam-deque = "0.7.0" crossbeam-queue = "0.1.0" crossbeam-utils = "0.6.4" num_cpus = "1.2" slab = "0.4.1" log = "0.4" lazy_static = "1" [dev-dependencies] tokio = { version = "=0.2.0-alpha.1", path = "../tokio" } tokio-test = { version = "=0.2.0-alpha.1", path = "../tokio-test" } rand = "0.7" env_logger = { version = "0.6", default-features = false }