Files
tracing/tracing-serde/Cargo.toml
Oscar Gustafsson c3f5745b73 subscriber: update matchers to 0.2 (#3033)
Update the version of the `matchers` crate to 0.2. This requires also
adding a direct dependency on `regex-automata` to enable the `std`
feature.
2025-05-27 10:28:28 +02:00

39 lines
975 B
TOML

[package]
name = "tracing-serde"
version = "0.2.0"
authors = ["Tokio Contributors <team@tokio.rs>"]
license = "MIT"
edition = "2018"
repository = "https://github.com/tokio-rs/tracing"
homepage = "https://tokio.rs"
description = """
A compatibility layer for serializing trace data with `serde`
"""
categories = [
"development-tools::debugging",
"development-tools::profiling",
"asynchronous",
"encoding",
]
keywords = ["logging", "tracing", "serialization"]
rust-version = "1.65.0"
[features]
default = ["std"]
std = ["serde/std", "tracing-core/std"]
portable-atomic = ["tracing-core/portable-atomic"]
critical-section = ["tracing-core/critical-section"]
[dependencies]
serde = { version = "1.0.139", default-features = false, features = ["alloc"] }
tracing-core = { path = "../tracing-core", version = "0.2", default-features = false }
[dev-dependencies]
serde_json = "1.0.82"
[badges]
maintenance = { status = "experimental" }
[lints]
workspace = true