-
### demo
``` rust
extern crate indicatif;
use indicatif::{ProgressBar, ProgressStyle, MultiProgress};
use std::thread::sleep;
use std::time::Duration;
fn main() {
let m = MultiProgress:…
-
Find a library that offers:
- multi progress bar (visualize searches against multiple topics)
- message output that doesn't conflict with progress bar - to present found records
venth updated
3 years ago
-
While ProgressBar works fine with tokio, MultiProgress does not, because there is only a blocking `join()` function. It would be great if indicatif's MultiProgress would support tokio!
-
Currently when installing a plugin as a Docker image, we send the progress to info to the log:
https://github.com/stencila/stencila/blob/00f7461b3397095180c2873dca669010ed0facc0/rust/src/plugins.rs…
-
Like multiprogress must contain a strong arc to progress bar, if my code panic, I don't call finish and so I deadlock.
Is there a way to fix this ? I will do a wrapper to call finish on drop but th…
-
It's my first time using Rayon and Indicatif so apologies if this is a naive question. I'm trying to use Rayon to iterate over a set of files. Code is like this:
```
let mp = MultiProgress::ne…
-
![rayon-ind](https://user-images.githubusercontent.com/11157420/113993948-ac57de00-9874-11eb-8a19-2470e89b005a.gif)
Steps to reproduce:
1) Clone: https://github.com/pjmp/indicatif-rayon
2)…
-
![image](https://user-images.githubusercontent.com/427866/101495659-131dc700-3969-11eb-8cb0-617648ccf52a.png)
Not sure why this is happening or how to debug why. Maybe you have some pointers?
Th…
-
I have a multi-threaded program where I add a ProgressBar with length 100 to a multi bar and then continue to tick() and set_length() the bar (increasing values, as I see in the log output). The bar g…
-
Code on macOS 10.15.7, rustc 1.49.0-nightly (ffa2e7ae8 2020-10-24):
```rust
use std::thread;
use std::time::Duration;
use std::cmp::min;
use rayon::prelude::*;
use indicatif::{MultiProgress, P…