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

31 lines
897 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
# - README.md
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"
edition = "2018"
2019-03-22 13:55:48 -07:00
documentation = "https://docs.rs/tokio-current-thread/0.1.6/tokio_current_thread"
2018-06-12 19:26:03 +02:00
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://github.com/tokio-rs/tokio"
license = "MIT"
authors = ["Carl Lerche <[email protected]>"]
description = """
Single threaded executor which manage many tasks concurrently on the current thread.
"""
keywords = ["futures", "tokio"]
categories = ["concurrency", "asynchronous"]
2019-05-14 10:27:36 -07:00
publish = false
2018-06-12 19:26:03 +02:00
[dependencies]
2019-05-14 10:27:36 -07:00
tokio-executor = { version = "0.2.0", path = "../tokio-executor" }
crossbeam-channel = "0.3.8"
2019-06-24 12:34:30 -07:00
[dev-dependencies]
tokio-sync = { version = "0.2.0", path = "../tokio-sync" }