Files
tokio/tokio-threadpool/Cargo.toml
T

45 lines
1.2 KiB
TOML
Raw Normal View History

[package]
name = "tokio-threadpool"
2018-06-06 20:14:35 -07:00
# When releasing to crates.io:
# - Remove path dependencies
2018-06-06 20:14:35 -07:00
# - 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.
2019-05-14 10:27:36 -07:00
# - Create "v0.2.x" git tag.
version = "0.2.0"
edition = "2018"
2019-04-22 15:12:25 -07:00
documentation = "https://docs.rs/tokio-threadpool/0.1.14/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"]
2019-05-14 10:27:36 -07:00
publish = false
[dependencies]
2019-05-14 10:27:36 -07:00
tokio-executor = { version = "0.2.0", path = "../tokio-executor" }
2019-06-27 22:30:56 -07:00
tokio-sync = { version = "0.2.0", path = "../tokio-sync" }
futures-core-preview = "0.3.0-alpha.17"
2019-06-27 22:30:56 -07:00
arc-waker = { git = "https://github.com/tokio-rs/async" }
crossbeam-deque = "0.7.0"
crossbeam-queue = "0.1.0"
crossbeam-utils = "0.6.4"
num_cpus = "1.2"
slab = "0.4.1"
log = "0.4"
lazy_static = "1"
2018-03-23 10:34:42 -07:00
[dev-dependencies]
rand = "0.7"
2018-08-10 21:37:45 +02:00
env_logger = "0.5"
2019-06-27 22:30:56 -07:00
async-util = { git = "https://github.com/tokio-rs/async" }
tokio = { version = "0.2.0", path = "../tokio" }
tokio-test = { version = "0.2.0", path = "../tokio-test" }