Files
tokio/tokio-macros/Cargo.toml
T

34 lines
707 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 CHANGELOG.md.
2020-12-09 09:42:05 -08:00
# - Create "tokio-macros-1.0.x" git tag.
2021-11-16 09:54:07 +01:00
version = "1.6.0"
2019-04-25 19:22:32 -07:00
edition = "2018"
2021-11-23 12:09:24 +09:00
rust-version = "1.46"
2019-05-14 10:27:36 -07:00
authors = ["Tokio Contributors <[email protected]>"]
license = "MIT"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
description = """
Tokio's proc macros.
"""
categories = ["asynchronous"]
2019-04-25 19:22:32 -07:00
[lib]
proc-macro = true
[features]
[dependencies]
2020-01-22 18:59:22 -08:00
proc-macro2 = "1.0.7"
2019-08-14 06:11:26 +02:00
quote = "1"
syn = { version = "1.0.56", features = ["full"] }
[dev-dependencies]
2020-12-09 09:42:05 -08:00
tokio = { version = "1.0.0", path = "../tokio", features = ["full"] }
[package.metadata.docs.rs]
all-features = true