[package]
edition = "2024"
name = "meta-tracing"
version = "0.1.0"
authors = ["Edmund Cape"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Flexible metadata collection layered on top of the tracing crate. Accumulate structured sections, timings, and issues during processing and emit them as JSON alongside the usual tracing spans."
homepage = "https://github.com/EdmundsEcho/meta-tracing"
documentation = "https://docs.rs/meta-tracing"
readme = "README.md"
keywords = [
"tracing",
"metadata",
"observability",
"telemetry",
"etl",
]
categories = [
"development-tools::debugging",
"data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/EdmundsEcho/meta-tracing"
[lib]
name = "meta_tracing"
path = "src/lib.rs"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tracing]
version = "0.1"