mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-27 00:00:12 +02:00
This works around a bug in the cargo renaming feature as well as allows the use of `[patch]` in the `Cargo.toml`.
42 lines
1.1 KiB
TOML
42 lines
1.1 KiB
TOML
cargo-features = ["edition", "rename-dependency"]
|
|
|
|
[package]
|
|
name = "tokio-async-await"
|
|
edition = "2018"
|
|
|
|
# When releasing to crates.io:
|
|
# - Update html_root_url.
|
|
version = "0.1.2"
|
|
authors = ["Carl Lerche <[email protected]>"]
|
|
license = "MIT"
|
|
repository = "https://github.com/tokio-rs/tokio"
|
|
homepage = "https://tokio.rs"
|
|
documentation = "https://docs.rs/tokio-async-await/0.1.1"
|
|
description = """
|
|
Experimental async/await support for Tokio
|
|
"""
|
|
categories = ["asynchronous"]
|
|
|
|
[workspace]
|
|
members = [
|
|
"./",
|
|
"examples",
|
|
]
|
|
|
|
[lib]
|
|
name = "tokio"
|
|
|
|
[dependencies]
|
|
futures = "0.1.23"
|
|
tokio = { version = "0.1.8", path = ".." }
|
|
tokio-io = { version = "0.1.7", path = "../tokio-io" }
|
|
tokio-channel = { version = "0.1.0", path = "../tokio-channel", features = ["async-await-preview"] }
|
|
tokio-reactor = { version = "0.1.5", path = "../tokio-reactor", features = ["async-await-preview"] }
|
|
futures-core-preview = { version = "0.3.0-alpha.2" }
|
|
futures-util-preview = { version = "0.3.0-alpha.2" }
|
|
|
|
[dev-dependencies]
|
|
bytes = "0.4.9"
|
|
tokio-codec = { version = "0.1.0", path = "../tokio-codec" }
|
|
hyper = "0.12.8"
|