Files
tokio/tokio-threadpool/Cargo.toml
T

27 lines
671 B
TOML
Raw Normal View History

[package]
name = "tokio-threadpool"
version = "0.1.0"
documentation = "https://docs.rs/tokio-threadpool"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://github.com/tokio-rs/tokio"
license = "MIT"
authors = ["Carl Lerche <[email protected]>"]
description = """
A task scheduler backed by a work-stealing thread pool.
"""
keywords = ["futures", "tokio"]
categories = ["concurrency", "asynchronous"]
[dependencies]
2018-03-08 20:15:51 -08:00
tokio-executor = { version = "0.1.0", path = "../tokio-executor" }
futures = "0.1.18"
2018-03-07 02:49:01 +09:00
crossbeam-deque = "0.3"
num_cpus = "1.2"
2018-03-09 21:25:38 +01:00
rand = "0.4"
log = "0.3"
[dev-dependencies]
tokio-timer = "0.1"
env_logger = "0.4"
futures-cpupool = "0.1.7"