Display informational boxes in the terminal.
Your Cargo.toml
should include billboard
as a dependency
[dependencies]
billboard = "0.2"
use billboard::Billboard;
fn main() {
Billboard::default().eprint("Hello, World!");
}
More examples can be found here.
This library was heavily inspired by boxen, but has no official association with that project.