blob: d9b05795bf915d371dc8691d12791cd6c349f620 [file] [log] [blame]
Joel Galensonea9e4542020-10-23 08:06:02 -07001[package]
2name = "tokio-macros"
3# When releasing to crates.io:
4# - Remove path dependencies
Joel Galensonea9e4542020-10-23 08:06:02 -07005# - Update CHANGELOG.md.
Haibo Huangb71afff2020-12-23 10:10:29 -08006# - Create "tokio-macros-1.0.x" git tag.
David LeGare22010912022-03-02 16:21:08 +00007version = "1.7.0"
Joel Galensonea9e4542020-10-23 08:06:02 -07008edition = "2018"
David LeGare22010912022-03-02 16:21:08 +00009rust-version = "1.46"
Joel Galensonea9e4542020-10-23 08:06:02 -070010authors = ["Tokio Contributors <team@tokio.rs>"]
11license = "MIT"
12repository = "https://github.com/tokio-rs/tokio"
13homepage = "https://tokio.rs"
Joel Galensonea9e4542020-10-23 08:06:02 -070014description = """
15Tokio's proc macros.
16"""
17categories = ["asynchronous"]
18
19[lib]
20proc-macro = true
21
22[features]
23
24[dependencies]
25proc-macro2 = "1.0.7"
26quote = "1"
Joel Galenson40177b32021-05-19 17:33:00 -070027syn = { version = "1.0.56", features = ["full"] }
Joel Galensonea9e4542020-10-23 08:06:02 -070028
29[dev-dependencies]
Haibo Huang5f95ff32021-02-09 18:21:05 -080030tokio = { version = "1.0.0", path = "../tokio", features = ["full"] }
Joel Galensonea9e4542020-10-23 08:06:02 -070031
32[package.metadata.docs.rs]
33all-features = true