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

24 lines
715 B
TOML
Raw Normal View History

2018-06-12 19:26:03 +02:00
[package]
name = "tokio-current-thread"
# When releasing to crates.io:
# - Update html_root_url.
2018-09-26 22:32:51 -07:00
# - Update doc URL
2018-06-12 19:26:03 +02:00
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag.
2018-11-21 17:11:31 -08:00
version = "0.1.4"
documentation = "https://docs.rs/tokio-current-thread/0.1.4/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"]
[dependencies]
tokio-executor = { version = "0.1.5", path = "../tokio-executor" }
2018-06-12 19:26:03 +02:00
futures = "0.1.19"