mirror of
https://github.com/tokio-rs/tracing.git
synced 2025-09-29 22:10:38 +00:00

* chore: avoid warnings from unknown cfg flags * core: address warning for static-mut-refs * chore: clean up warnings
31 lines
705 B
TOML
31 lines
705 B
TOML
[package]
|
|
name = "tracing-macros"
|
|
version = "0.1.0"
|
|
authors = ["Eliza Weisman <eliza@buoyant.io>"]
|
|
edition = "2018"
|
|
repository = "https://github.com/tokio-rs/tracing"
|
|
homepage = "https://tokio.rs"
|
|
description = """
|
|
Macros for emitting trace events
|
|
"""
|
|
categories = [
|
|
"development-tools::debugging",
|
|
"development-tools::profiling",
|
|
"asynchronous",
|
|
]
|
|
keywords = ["logging", "tracing"]
|
|
license = "MIT"
|
|
rust-version = "1.63.0"
|
|
|
|
[dependencies]
|
|
tracing = { path = "../tracing", version = "0.1.35" }
|
|
|
|
[dev-dependencies]
|
|
tracing-subscriber = { path = "../tracing-subscriber", version = "0.3.0", features = ["env-filter"] }
|
|
|
|
[badges]
|
|
maintenance = { status = "experimental" }
|
|
|
|
[lints]
|
|
workspace = true
|