A library for streaming text with a configurable delay.
Made using asciinema.
# Cargo.toml
[dependencies]
stream = { git = "https://github.com/waymobetta/stream-rs" }// main.rs
use stream::stream_str;
stream_str("we built this city on rock and roll", 50);cargo run --example main