Files
tokio/tokio-macros/Cargo.toml
T

37 lines
734 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 (if any)
# - Update CHANGELOG.md.
# - Create "tokio-macros-x.y.z" git tag.
2026-04-03 09:37:58 +02:00
version = "2.7.0"
edition = "2021"
2025-10-02 11:14:17 +02:00
rust-version = "1.71"
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]
2023-10-24 16:15:25 +02:00
proc-macro2 = "1.0.60"
2019-08-14 06:11:26 +02:00
quote = "1"
2023-03-23 23:38:59 +01:00
syn = { version = "2.0", features = ["full"] }
[dev-dependencies]
tokio = { version = "1.0.0", features = ["full", "test-util"] }
[package.metadata.docs.rs]
all-features = true
[lints]
workspace = true