Files
tokio/tokio-futures/Cargo.toml
T

28 lines
583 B
TOML
Raw Normal View History

[package]
2019-04-25 19:22:32 -07:00
name = "tokio-futures"
# When releasing to crates.io:
# - Update html_root_url.
2019-05-14 10:27:36 -07:00
version = "0.2.0"
edition = "2018"
authors = ["Carl Lerche <[email protected]>"]
license = "MIT"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
2019-04-25 19:22:32 -07:00
documentation = "https://docs.rs/tokio-futures/0.1.0"
description = """
2019-06-24 12:34:30 -07:00
Utilities for working with futures, async, and await.
"""
categories = ["asynchronous"]
2019-05-14 10:27:36 -07:00
publish = false
2018-09-26 10:10:47 -07:00
[features]
2019-06-24 12:34:30 -07:00
all = []
default = [
"all",
]
[dependencies]
futures-core-preview = "0.3.0-alpha.17"
futures-sink-preview = "0.3.0-alpha.17"