Files
tokio/tokio-threadpool/Cargo.toml
T

39 lines
958 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.
2019-01-25 10:20:09 -08:00
# - Update doc url
# - Cargo.toml
# - README.md
2018-06-06 20:14:35 -07:00
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag.
2019-01-25 10:20:09 -08:00
version = "0.1.11"
documentation = "https://docs.rs/tokio-threadpool/0.1.11/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.7.0"
crossbeam-queue = "0.1.0"
crossbeam-utils = "0.6.4"
num_cpus = "1.2"
2018-11-16 17:54:14 -05:00
rand = "0.6"
slab = "0.4.1"
log = "0.4"
2018-03-23 10:34:42 -07:00
[dev-dependencies]
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"