pb icon indicating copy to clipboard operation
pb copied to clipboard

Console progress bar for Rust

Results 26 pb issues
Sort by recently updated
recently updated
newest added

@a8m, could you please push a new release to crates.io? Would be good to be able to depend on https://github.com/a8m/pb/pull/100 and https://github.com/a8m/pb/pull/106.

Given a single progress bar, If a message is set to a normal length it works as intended `filename.mp4: 18.47 MB / 41.00 MB [===>----] 45.05 % 2.35 MB/s 10s`...

The only way to display multiple progress bars is to use threads, this requirement isn't documented, and when you use single threads, you get silent failures.

Hello, I am using a "/dev/null" like handle when my application is in quiet mode to hide the progress bar. On unix, `tty::move_cursor_up` returns a string which is output to...

have to call tick() afterwards to get it to show the message

1. add non-blocking `flush` method 2. add `set_finish` to set behavior when a ProgressBar is finished * Keep: the current behavior, keep the progress bar in line * Remove: remove...

Here is what I see: ``` 7.85 GB / 13.96 GB ╢██████████████████████████░░░░░░░░░░░░░░░░░░░░░░░░░░░╟ 56.26 % 1.41 GB/s 4s 7.82 GB / 7.82 GB ╢██████████████████████████████████████████████████████╟ 100.00 % 39.08 GB/s 3.37 GB /...

This leads to lots of noise in logs files in my tools, since I am running some progress bars on kubernetes clusters. It would be great if ProgressBar would output...

Added the possibility to move the progress bar away from the edges of the screen, the right margin option doesn't work in the multibar mode

Using the pattern in the examples on the website, MultiBar::listen will likely hang if an error occurs as the ProgressBar::finish function will never get called. It'd be nice if listen...

good first issue