File tree 1 file changed +9
-3
lines changed 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change 3
3
//! Nutmeg draws terminal progress bars whose appearance is completely controlled
4
4
//! by the application.
5
5
//!
6
- //! ## Concept
6
+ //! # Concept
7
7
//!
8
8
//! By contrast to other Rust progress-bar libraries, Nutmeg has no built-in
9
9
//! concept of what the progress bar or indicator should look like: this is
41
41
//!
42
42
//! Errors in writing to the terminal cause a panic.
43
43
//!
44
- //! ## Example
44
+ //! # Example
45
45
//!
46
46
//! ```
47
47
//! use std::io::Write;
86
86
//!
87
87
//! See the `examples/` directory for more.
88
88
//!
89
- //! ## Potential future features
89
+ //! # Potential future features
90
90
//!
91
91
//! * Draw updates from a background thread, so that it will keep ticking even
92
92
//! if not actively updated, and to better handle applications that send a
99
99
//! * Better detection of when to draw progress or not. Possibly look at
100
100
//! `TERM=dumb`; possibly hook in to a standard Rust mechanism e.g.
101
101
//! <https://github.com/rust-cli/team/issues/15#issuecomment-891350115>.
102
+ //!
103
+ //! # Changelog
104
+ //!
105
+ //! ## 0.0.0
106
+ //!
107
+ //! * First release.
102
108
103
109
#![ warn( missing_docs) ]
104
110
You can’t perform that action at this time.
0 commit comments