Files
tokio/tokio-macros/Cargo.toml
T

36 lines
827 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
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag.
2019-08-29 12:59:10 -07:00
version = "0.2.0-alpha.4"
2019-04-25 19:22:32 -07:00
edition = "2018"
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"
2019-08-29 12:59:10 -07:00
documentation = "https://docs.rs/tokio-macros/0.2.0-alpha.4/tokio_macros"
description = """
Tokio's proc macros.
"""
categories = ["asynchronous"]
2019-04-25 19:22:32 -07:00
[lib]
proc-macro = true
[features]
[dependencies]
2019-08-14 06:11:26 +02:00
quote = "1"
syn = { version = "1", features = ["full"] }
[dev-dependencies]
2019-08-29 12:59:10 -07:00
tokio = { version = "0.2.0-alpha.4", path = "../tokio", default-features = false, features = ["rt-full"] }
[package.metadata.docs.rs]
all-features = true