-
**Describe the bug**
It seems that indicatif::multi::MultiState::draw panic with overflow in debug mode, at line 301 line_count is usize::MAX because width is 0.
```
thread 'fuzz' panicked at %US…
-
`MultiProgress` seems to conflate support for displaying and update multiple progress bars concurrently and support for updating progress bars from multiple threads. It would be nice to isolate these …
-
Constantly getting "out of gas" error when syncing Uniswap V2.
```Rust
#[cfg(test)]
mod tests {
use crate::sync::uniswap_v2::factory::UniswapV2Factory;
use crate::sync::Factory;
u…
-
Is this compatible with [flexi_logger](https://github.com/emabee/flexi_logger)?
I try to use it like this:
```rust
let _logger = Logger::try_with_str("debug")
.unwrap()
.f…
-
**Thanks for publishing your great work. I would highly appreciate it if you could help me with the following problem.**
I was trying to run the example code and ran into this werid problem. The …
-
After updating indicatif to v0.17, the overall progress bar in my application is seemingly getting "spammed", creating a new line every time the sub-progress bar gets updated.
I believe I've seen t…
-
If you specify more progress bars than rows in your terminal window then it prints all the progress bars as new lines - it doesn't erase them properly.
I guess ideally it would maintain an internal…
-
While it is possible to use the stdout/stderr wrappers to output something to the console, for some use-cases this is not enough.
I want to prompt the user with a selection using [dialoguer](https:…
-
This is not an issue but instructions on how you can log messages and have a progress bar at the same time.
its an issue that comes up sometimes: https://github.com/console-rs/indicatif/issues/366 ht…
-
I have a long running app using a `MultiProgress` to which various `ProgressBar` are regularly added. It's not clear to me from the doc if I have to manually remove those from the multi once they are …