forked from davidbarsky/tracing-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (26 loc) · 792 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
[package]
name = "tracing-tree"
version = "0.2.2"
authors = ["David Barsky <[email protected]>", "Nathan Whitaker"]
edition = "2018"
license = "MIT OR Apache-2.0"
description = "A Tracing Layer which prints a tree of spans and events."
repository = "https://github.com/davidbarsky/tracing-tree"
readme = "README.md"
[dependencies]
tracing-core = "0.1"
tracing-subscriber = { version = "0.3", default-features = false, features = ["registry", "fmt", "std"] }
nu-ansi-term = "0.46.0"
atty = "0.2"
tracing-log = { version = "0.1", optional = true }
time = { version = "0.3.20", optional = true, features = ["formatting", "local-offset"] }
[features]
default = ["tracing-log"]
[dev-dependencies]
tracing = "0.1"
glob = "0.3"
assert_cmd = "1"
log = "0.4"
[[test]]
name = "ui"
harness = false