cli_animations 0.1.0

Various CLI animations. Very early stages, but intending this to be a library of useful animations for CLI apps.
Documentation
1
2
3
4
5
6
use std::io::Write;

pub fn hide_cursor() {
    print!("\x1B[?25l");
    std::io::stdout().flush().unwrap();
}