mirror of
https://github.com/tokio-rs/tokio.git
synced 2025-09-25 12:00:35 +00:00

A first pass at updating Tokio to use `std::future`. Implementations of `Future` from the futures crate are updated to implement `Future` from std. Implementations of `Stream` are moved to a feature flag. This commits disables a number of crates that have not yet been updated.
25 lines
497 B
TOML
25 lines
497 B
TOML
[package]
|
|
name = "tokio-macros"
|
|
# When releasing to crates.io:
|
|
# - Remove path dependencies
|
|
# - Update html_root_url.
|
|
# - Update doc url
|
|
# - Cargo.toml
|
|
# - README.md
|
|
# - Update CHANGELOG.md.
|
|
# - Create "v0.1.x" git tag.
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
authors = ["Tokio Contributors <team@tokio.rs>"]
|
|
publish = false
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[features]
|
|
|
|
[dependencies]
|
|
proc-macro2 = "0.4.27"
|
|
quote = "0.6.11"
|
|
syn = { version = "0.15.27", features = ["full", "extra-traits", "visit-mut"] }
|