Files
tokio/tokio-threadpool/Cargo.toml
T
Carl Lerche 9cffda59c9 Bump version to v0.1.4 (#252)
This also bumps:

* tokio-executor: v0.1.1
* tokio-reactor: v0.1.1
* tokio-threadpool: v0.1.1
2018-03-23 10:34:42 -07:00

34 lines
860 B
TOML

[package]
name = "tokio-threadpool"
version = "0.1.1"
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.1", path = "../tokio-executor" }
futures = "0.1.19"
crossbeam-deque = "0.3"
num_cpus = "1.2"
rand = "0.4"
log = "0.3"
# Futures 0.2 integration
futures2 = { version = "0.1", path = "../futures2", optional = true }
[dev-dependencies]
tokio-timer = "0.1"
env_logger = "0.4"
futures-cpupool = "0.1.7"
[features]
unstable-futures = ["futures2", "tokio-executor/unstable-futures"]
default = []