diff options
author | Valentin Popov <valentin@popov.link> | 2024-01-08 00:21:28 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2024-01-08 00:21:28 +0300 |
commit | 1b6a04ca5504955c571d1c97504fb45ea0befee4 (patch) | |
tree | 7579f518b23313e8a9748a88ab6173d5e030b227 /vendor/indicatif/README.md | |
parent | 5ecd8cf2cba827454317368b68571df0d13d7842 (diff) | |
download | fparkan-1b6a04ca5504955c571d1c97504fb45ea0befee4.tar.xz fparkan-1b6a04ca5504955c571d1c97504fb45ea0befee4.zip |
Initial vendor packages
Signed-off-by: Valentin Popov <valentin@popov.link>
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 + +[![Documentation](https://docs.rs/indicatif/badge.svg)](https://docs.rs/indicatif/) +[![Crates.io](https://img.shields.io/crates/v/indicatif.svg)](https://crates.io/crates/indicatif) +[![Build status](https://github.com/console-rs/indicatif/workflows/CI/badge.svg)](https://github.com/console-rs/indicatif/actions/workflows/rust.yml) +[![Chat](https://img.shields.io/discord/976380008299917365?logo=discord)](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. |