Files
tokio/tokio-threadpool/Cargo.toml
T

30 lines
721 B
TOML
Raw Normal View History

[package]
name = "tokio-threadpool"
2018-05-02 12:14:44 -07:00
version = "0.1.3"
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]
tokio-executor = { version = "0.1.2", path = "../tokio-executor" }
2018-03-23 10:34:42 -07:00
futures = "0.1.19"
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.4"
2018-03-23 10:34:42 -07:00
[dev-dependencies]
tokio-timer = "0.1"
env_logger = "0.4"
2018-04-15 12:29:22 -07:00
# For comparison benchmarks
futures-cpupool = "0.1.7"
2018-04-15 12:29:22 -07:00
threadpool = "1.7.1"