Files
tokio/tokio-executor/Cargo.toml
T

26 lines
633 B
TOML
Raw Normal View History

[package]
name = "tokio-executor"
2018-03-23 10:34:42 -07:00
# When releasing to crates.io:
# - Update html_root_url.
# - Update CHANGELOG.md.
2018-08-24 08:58:26 -07:00
# - Update doc URL.
2019-01-06 23:25:55 -08:00
# - Cargo.toml
# - README.md
2018-03-23 10:34:42 -07:00
# - Create "v0.1.x" git tag.
2019-01-06 23:25:55 -08:00
version = "0.1.6"
documentation = "https://docs.rs/tokio-executor/0.1.6/tokio_executor"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://github.com/tokio-rs/tokio"
license = "MIT"
authors = ["Carl Lerche <[email protected]>"]
description = """
Future execution primitives
"""
keywords = ["futures", "tokio"]
categories = ["concurrency", "asynchronous"]
[dependencies]
2019-01-03 06:51:22 +01:00
crossbeam-utils = "0.6.2"
2018-03-23 10:34:42 -07:00
futures = "0.1.19"