mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-16 00:00:12 +02:00
- Move `tokio` into its own directory. - Remove `path` dependencies. - Run tests with once with crates.io dep and once with patched dep.
39 lines
916 B
TOML
39 lines
916 B
TOML
[package]
|
|
name = "tokio-threadpool"
|
|
# When releasing to crates.io:
|
|
# - Update html_root_url.
|
|
# - Update doc url
|
|
# - Cargo.toml
|
|
# - README.md
|
|
# - Update CHANGELOG.md.
|
|
# - Create "v0.1.x" git tag.
|
|
version = "0.1.12"
|
|
documentation = "https://docs.rs/tokio-threadpool/0.1.12/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 = "0.1.2"
|
|
futures = "0.1.19"
|
|
crossbeam-deque = "0.7.0"
|
|
crossbeam-queue = "0.1.0"
|
|
crossbeam-utils = "0.6.4"
|
|
num_cpus = "1.2"
|
|
rand = "0.6"
|
|
slab = "0.4.1"
|
|
log = "0.4"
|
|
|
|
[dev-dependencies]
|
|
env_logger = "0.5"
|
|
|
|
# For comparison benchmarks
|
|
futures-cpupool = "0.1.7"
|
|
threadpool = "1.7.1"
|