36 lines
871 B
TOML
36 lines
871 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.63.0"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = ["serde/std", "tracing-core/std"]
|
|
|
|
[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
|