Files
tokio/tokio-threadpool/Cargo.toml
T

35 lines
860 B
TOML
Raw Normal View History

[package]
name = "tokio-threadpool"
2018-06-06 20:14:35 -07:00
# When releasing to crates.io:
# - Update html_root_url.
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag.
2018-07-05 10:22:03 -07:00
version = "0.1.5"
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"
crossbeam-deque = "0.6.1"
crossbeam-utils = "0.5.0"
num_cpus = "1.2"
2018-07-11 23:14:40 +04:00
rand = "0.5"
log = "0.4"
2018-03-23 10:34:42 -07:00
[dev-dependencies]
tokio-timer = "0.1"
2018-08-10 21:37:45 +02:00
env_logger = "0.5"
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"