This is slightly changed version of rustbar crate, which is simple and minimalistic, but i needed another infinite bar animation, hence this crate.
```rust
pub fn main() -> Result<()> { println!("\nGoing to poll some stuff."); let mut loader = Infinite::new().tostderr(); loader.setmsg("Polling"); loader.start()?; thread::sleep(Duration::from_secs(2)); loader.stop()?; Ok(()) } ```
License: MIT