-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
54 lines (42 loc) · 1.11 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
49
50
51
52
53
54
[package]
name = "tracing-indicatif"
version = "0.3.8"
edition = "2021"
description = "Tracing layer that automatically creates and manages progress bars for active spans."
license = "MIT"
repository = "https://github.com/emersonford/tracing-indicatif"
categories = ["command-line-interface"]
keywords = ["cli", "progress", "progressbar", "progress-bar", "tracing"]
documentation = "https://docs.rs/tracing-indicatif"
exclude = ["*.gif"]
[dependencies]
indicatif = { version = "0.17.9", features = ["in_memory"] }
tracing = "0.1.40"
tracing-core = "0.1.32"
tracing-subscriber = { version = "0.3.18" }
[dev-dependencies]
futures = "0.3.31"
tokio = { version = "1.41.1", features = ["full"] }
rand = { version = "0.8.5", features = ["std_rng"] }
console = "0.15.8"
dialoguer = "0.11.0"
[lib]
name = "tracing_indicatif"
[[example]]
name = "basic"
[[example]]
name = "child_spans"
[[example]]
name = "build_console"
[[example]]
name = "per_span_style"
[[example]]
name = "progress_bar"
[[example]]
name = "filter"
[[example]]
name = "multithread"
[[example]]
name = "stdout_stderr_printing"
[[example]]
name = "dialoguer_suspend"