mirror of
https://github.com/tokio-rs/tracing.git
synced 2026-01-25 04:16:18 +00:00
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.
39 lines
975 B
TOML
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
|