mirror of
https://github.com/tokio-rs/tokio.git
synced 2025-09-25 12:00:35 +00:00

Also bumps the following sub-crates: * tokio-fs (0.1.4) * tokio-io (0.1.10) * tokio-signal (0.2.6) * tokio-threadpool (0.1.8) * tokio-uds (0.2.3)
36 lines
903 B
TOML
36 lines
903 B
TOML
[package]
|
|
name = "tokio-threadpool"
|
|
# When releasing to crates.io:
|
|
# - Update html_root_url.
|
|
# - Update CHANGELOG.md.
|
|
# - Update doc URL.
|
|
# - Create "v0.1.x" git tag.
|
|
version = "0.1.8"
|
|
documentation = "https://docs.rs/tokio-threadpool/0.1.8/tokio_threadpool"
|
|
repository = "https://github.com/tokio-rs/tokio"
|
|
homepage = "https://github.com/tokio-rs/tokio"
|
|
license = "MIT"
|
|
authors = ["Carl Lerche <me@carllerche.com>"]
|
|
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" }
|
|
futures = "0.1.19"
|
|
crossbeam-deque = "0.6.1"
|
|
crossbeam-utils = "0.5.0"
|
|
num_cpus = "1.2"
|
|
rand = "0.5"
|
|
log = "0.4"
|
|
|
|
[dev-dependencies]
|
|
tokio-timer = "0.1"
|
|
env_logger = "0.5"
|
|
|
|
# For comparison benchmarks
|
|
futures-cpupool = "0.1.7"
|
|
threadpool = "1.7.1"
|