forked from LukeMathWalker/tracing-bunyan-formatter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 lines (39 loc) · 1.56 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "tracing-bunyan-formatter"
version = "0.3.9"
authors = ["Luca Palmieri <[email protected]>"]
edition = "2018"
license = "MIT/Apache-2.0"
repository = "https://github.com/LukeMathWalker/tracing-bunyan-formatter"
documentation = "https://docs.rs/tracing-bunyan-formatter/"
readme = "README.md"
description = "A Bunyan formatter for the tracing crate"
keywords = ["logging", "metrics", "tracing", "bunyan", "subscriber"]
categories = ["development-tools::profiling", "development-tools::debugging"]
[lib]
path = "src/lib.rs"
[features]
default = []
arbitrary-precision = ["serde_json/arbitrary_precision"]
valuable = ["tracing/valuable", "dep:valuable", "dep:valuable-serde"]
[dependencies]
tracing = { version = "0.1.13", default-features = false, features = ["log", "std"] }
tracing-subscriber = { version = "0.3.16", default-features = false, features = ["registry", "fmt"] }
tracing-log = { version = "0.1" }
log = "0.4.8"
serde_json = { version = "1.0.52" }
serde = "1.0.106"
gethostname = "0.2.1"
tracing-core = "0.1.10"
time = { version = "0.3", default-features = false, features = ["formatting"] }
ahash = "0.8.2"
valuable = { version = "0.1.0", optional = true }
valuable-serde = { version = "0.1.0", optional = true }
[dev-dependencies]
claims = "0.6.0"
lazy_static = "1.4.0"
tracing = { version = "0.1.13", default-features = false, features = ["log", "std", "attributes"] }
time = { version = "0.3", default-features = false, features = ["formatting", "parsing", "local-offset"] }
[[example]]
name = "valuable"
required-features = ["valuable", "valuable/derive"]