forked from tokio-rs/tracing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (29 loc) · 845 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "tracing-serde"
version = "0.2.0"
authors = ["Tokio Contributors <[email protected]>"]
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" }