diff options
Diffstat (limited to 'vendor/indicatif/README.md')
-rw-r--r-- | vendor/indicatif/README.md | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/vendor/indicatif/README.md b/vendor/indicatif/README.md new file mode 100644 index 0000000..3fde30b --- /dev/null +++ b/vendor/indicatif/README.md @@ -0,0 +1,30 @@ +# indicatif + +[](https://docs.rs/indicatif/) +[](https://crates.io/crates/indicatif) +[](https://github.com/console-rs/indicatif/actions/workflows/rust.yml) +[](https://discord.gg/YHmNA3De4W) + +A Rust library for indicating progress in command line applications to users. + +This currently primarily provides progress bars and spinners as well as basic +color support, but there are bigger plans for the future of this! + +## Examples + +[examples/yarnish.rs](examples/yarnish.rs) +<img src="https://github.com/console-rs/indicatif/blob/main/screenshots/yarn.gif?raw=true"> + +[examples/download.rs](examples/download.rs) +<img src="https://github.com/console-rs/indicatif/blob/main/screenshots/download.gif?raw=true"> + +[examples/multi.rs](examples/multi.rs) +<img src="https://github.com/console-rs/indicatif/blob/main/screenshots/multi-progress.gif?raw=true"> + +[examples/single.rs](examples/single.rs) +<img src="https://github.com/console-rs/indicatif/blob/main/screenshots/single.gif?raw=true"> + +## Integrations + +You can use [indicatif-log-bridge](https://crates.io/crates/indicatif-log-bridge) to integrate with the +[log crate](https://crates.io/crates/log) and avoid having both fight for your terminal. |