chromakopia 0.1.0

Beautiful terminal string gradients and animations for Rust
Documentation
1
2
3
4
5
6
7
8
9
use chromakopia::animate;
use std::time::Duration;

#[tokio::main]
async fn main() {
    let anim = animate::glitch("SYSTEM OVERRIDE IN PROGRESS", 1.0);
    tokio::time::sleep(Duration::from_secs(5)).await;
    anim.stop();
}