-
If I run `cargo clippy --all-targets --all-features` getting this error:
```
error[E0599]: no method named `join` found for struct `indicatif::MultiProgress` in the current scope
--> src/progr…
-
Since the theme is write-once, read-many, I think a `RwLock` would be more appropriate than a `Mutex`. I remember running into deadlocks on accident when writing the multiprogress suggestion PR, and t…
-
It will be really helpful to have an async example with MultiProgress. The current async example uses just a single progress bar.
-
I have no idea if this is a bug. Tested with `indicatif == 0.17.2`.
The good one which can be cleared when `set_position` after added to `MultiProgress`:
```rust
use indicatif::{MultiProgress, Pr…
-
When displaying a progress bar at the bottom and spinner(s) above, the spinners leave newlines when they get cleared:
![rec](https://github.com/console-rs/indicatif/assets/7853372/de2ed6db-b190-41b…
msrd0 updated
5 months ago
-
#### How to reproduce:
At least `env_logger` supports setting a higher log level for some module than the default level:
```rust
let multi = indicatif::MultiProgress::new();
indicatif_log_brid…
bspot updated
2 months ago
-
There is currently multiple apparent ways to get rid of a progress bar:
* drop all references to it
* call reset()
* call finish()
* call finish_and_clear()
* call abandon()
even after readi…
-
Try this render test:
```rust
#[test]
fn multi_progress_println_newline() {
let in_mem = InMemoryTerm::new(10, 10);
let mp =
MultiProgress::with_draw_target(ProgressDrawTarget:…
-
See for instance the [this screen recording](https://imgur.com/a/5vCJRSx), featuring a program using multiple `ProgressBar`s in a `MultiProgress` with the spinner style. When the terminal window is re…
-
I want to use it to set the refresh rate to something a little slower, but doing so causes the insert order to be changed which is unfortunate because I have "total progress" bar that I always want on…
arifd updated
2 years ago