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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/*!
Prodash is a dashboard for displaying the progress of concurrent application.
It consists of two parts
* a `Tree` to gather progress information and messages
* a terminal user interface which displays this information, along with optional free-form information provided by the application itself
Even though the `Tree` is not async, it's meant to be transparent and non-blocking performance wise, and benchmarks seem to indicate this
is indeed the case.
The **terminal user interface** seems to be the least transparent part, but can be configured to refresh less frequently.
# Terminal User Interface
By default, a TUI is provided to visualize all state. Have a look at [the example provided in the tui module](./tui/index.html).
**Please note** that it is behind the `render-tui` feature toggle, which is enabled by default.
# Logging
If the feature `progress-tree-log` is enabled (default), most calls to `progress` will also be logged.
That way, even without a terminal user interface, there will be progress messages.
Please note that logging to stdout should not be performed with this feature enabled and a terminal user interface is shown, as this will
seriously interfere with the TUI.
# A demo application
Please have a look at the [dashboard demo](https://github.com/Byron/crates-io-cli-rs/blob/master/prodash/examples/dashboard.rs).
[](https://asciinema.org/a/301838)
Run it with `cargo run --example dashboard` and see what else it can do by checking out `cargo run --example dashboard -- --help`.
*/
pub use atty;
///
///
pub use info;
pub use warn;
///
///
pub use Unit;
///
///
pub use ;
pub use crateThroughput;