Files
tokio/tokio-current-thread/Cargo.toml
T

29 lines
885 B
TOML
Raw Normal View History

2018-06-12 19:26:03 +02:00
[package]
name = "tokio-current-thread"
# When releasing to crates.io:
# - Remove path dependencies
2018-06-12 19:26:03 +02:00
# - Update html_root_url.
2019-03-01 21:04:43 -08:00
# - Update doc url
# - Cargo.toml
2018-06-12 19:26:03 +02:00
# - Update CHANGELOG.md.
2019-05-14 10:27:36 -07:00
# - Create "v0.2.x" git tag.
version = "0.2.0-alpha.1"
2019-05-14 10:27:36 -07:00
edition = "2018"
authors = ["Tokio Contributors <[email protected]>"]
2018-06-12 19:26:03 +02:00
license = "MIT"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
documentation = "https://docs.rs/tokio-current-thread/0.2.0-alpha.1/tokio_current_thread"
2018-06-12 19:26:03 +02:00
description = """
Single threaded executor which manage many tasks concurrently on the current thread.
"""
keywords = ["futures", "tokio"]
categories = ["concurrency", "asynchronous"]
[dependencies]
tokio-executor = { version = "=0.2.0-alpha.1", path = "../tokio-executor" }
crossbeam-channel = "0.3.8"
2019-06-24 12:34:30 -07:00
[dev-dependencies]
tokio-sync = { version = "=0.2.0-alpha.1", path = "../tokio-sync" }