mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-16 00:00:12 +02:00
32 lines
833 B
TOML
32 lines
833 B
TOML
[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]
|
|
tokio-executor = { version = "0.1.0", path = "../tokio-executor" }
|
|
futures = "0.1.18"
|
|
crossbeam-deque = "0.3"
|
|
num_cpus = "1.2"
|
|
rand = "0.4"
|
|
log = "0.3"
|
|
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 = []
|