-
Notifications
You must be signed in to change notification settings - Fork 756
/
Copy pathCargo.toml
36 lines (31 loc) · 996 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
34
35
36
[package]
name = "tracing-serde"
version = "0.1.3"
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.56.0"
[features]
valuable = ["valuable_crate", "valuable-serde", "tracing-core/valuable"]
[dependencies]
serde = "1"
tracing-core = { path = "../tracing-core", version = "0.1.28"}
[dev-dependencies]
serde_json = "1"
[target.'cfg(tracing_unstable)'.dependencies]
valuable_crate = { package = "valuable", version = "0.1.0", optional = true, default-features = false }
valuable-serde = { version = "0.1.0", optional = true, default-features = false }
[badges]
maintenance = { status = "experimental" }