[package]
edition = "2024"
name = "tracing-cache"
version = "0.1.4"
authors = ["kvc0"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A `tracing::Subscriber` that captures closed spans into a bounded in-memory ring buffer with a background driver."
readme = "README.md"
keywords = [
"tracing",
"subscriber",
"observability",
"cache",
"debugging",
]
categories = [
"development-tools::debugging",
"development-tools::profiling",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/kvc0/tracing-console"
resolver = "2"
[lib]
name = "tracing_cache"
path = "src/lib.rs"
[[bench]]
name = "span_throughput"
path = "benches/span_throughput.rs"
harness = false
[dependencies.compact_str]
version = "0.9"
features = ["serde"]
[dependencies.log]
version = "0.4"
[dependencies.rand]
version = "0.10"
[dependencies.slab]
version = "0"
[dependencies.spillway]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"rt",
"rt-multi-thread",
"sync",
"time",
"macros",
"net",
"io-util",
"signal",
"process",
]
[dependencies.tracing]
version = "0"
[dev-dependencies.criterion]
version = "0"
features = ["async_tokio"]
[dev-dependencies.tracing-futures]
version = "0.2"
[lints.clippy]
expect_used = "deny"
panic_in_result_fn = "deny"
todo = "deny"
unwrap_used = "deny"