58 lines
1.5 KiB
TOML
58 lines
1.5 KiB
TOML
|
|
[package]
|
||
|
|
name = "tracing-attributes"
|
||
|
|
# 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.1.23"
|
||
|
|
authors = [
|
||
|
|
"Tokio Contributors <team@tokio.rs>",
|
||
|
|
"Eliza Weisman <eliza@buoyant.io>",
|
||
|
|
"David Barsky <dbarsky@amazon.com>",
|
||
|
|
]
|
||
|
|
repository = "https://github.com/tokio-rs/tracing"
|
||
|
|
homepage = "https://tokio.rs"
|
||
|
|
description = """
|
||
|
|
Procedural macro attributes for automatically instrumenting functions.
|
||
|
|
"""
|
||
|
|
categories = [
|
||
|
|
"development-tools::debugging",
|
||
|
|
"development-tools::profiling",
|
||
|
|
"asynchronous",
|
||
|
|
]
|
||
|
|
keywords = ["logging", "tracing", "macro", "instrument", "log"]
|
||
|
|
license = "MIT"
|
||
|
|
readme = "README.md"
|
||
|
|
edition = "2018"
|
||
|
|
rust-version = "1.49.0"
|
||
|
|
|
||
|
|
[lib]
|
||
|
|
proc-macro = true
|
||
|
|
|
||
|
|
[features]
|
||
|
|
|
||
|
|
# This feature flag is no longer necessary.
|
||
|
|
async-await = []
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
proc-macro2 = "1"
|
||
|
|
syn = { version = "1.0.98", default-features = false, features = ["full", "parsing", "printing", "visit", "visit-mut", "clone-impls", "extra-traits", "proc-macro"] }
|
||
|
|
quote = "1"
|
||
|
|
|
||
|
|
[dev-dependencies]
|
||
|
|
tracing = { path = "../tracing", version = "0.1.35" }
|
||
|
|
tracing-mock = { path = "../tracing-mock", features = ["tokio-test"] }
|
||
|
|
tracing-subscriber = { path = "../tracing-subscriber", version = "0.3.0", features = ["env-filter"] }
|
||
|
|
tokio-test = { version = "0.3.0" }
|
||
|
|
tracing-core = { path = "../tracing-core", version = "0.1.28"}
|
||
|
|
async-trait = "0.1.56"
|
||
|
|
trybuild = "1.0.64"
|
||
|
|
rustversion = "1.0.9"
|
||
|
|
|
||
|
|
[badges]
|
||
|
|
maintenance = { status = "experimental" }
|