-
Notifications
You must be signed in to change notification settings - Fork 31
/
Cargo.toml
42 lines (38 loc) · 990 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
37
38
39
40
41
42
[package]
name = "tracing-tree"
version = "0.4.0"
authors = ["David Barsky <[email protected]>", "Nathan Whitaker", "Oli Scherer <[email protected]>"]
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"
rust-version = "1.70"
resolver = "2"
[dependencies]
tracing-core = "0.1"
tracing-subscriber = { version = "0.3", default-features = false, features = [
"registry",
"fmt",
"std",
] }
nu-ansi-term = "0.50.0"
tracing-log = { version = "0.2", optional = true, default-features = false, features = [
"std",
"log-tracer",
] }
time = { version = "0.3.20", optional = true, features = [
"formatting",
"local-offset",
] }
[features]
default = ["tracing-log"]
tracing-log = ["dep:tracing-log"]
[dev-dependencies]
tracing = "0.1"
ui_test = "0.7"
futures = "0.3"
log = "0.4"
[[test]]
name = "ui"
harness = false