Files
tokio/tokio-macros/Cargo.toml
T

28 lines
616 B
TOML
Raw Normal View History

2019-04-25 19:22:32 -07:00
[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.2.0"
2019-04-25 19:22:32 -07:00
edition = "2018"
2019-05-14 10:27:36 -07:00
authors = ["Tokio Contributors <[email protected]>"]
2019-04-25 19:22:32 -07:00
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"] }
[dev-dependencies]
tokio = { version = "0.2.0", path = "../tokio", default-features = false, features = ["rt-full"] }