boxx 0.0.3-beta

Display informational boxes in the terminal.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use boxx::{BorderColor, Boxx};

fn main() {
    Boxx::builder()
        .border_color(BorderColor::Blue)
        .build()
        .display(&format!(
            "Hello, World!\nThis box has a {} border now!",
            console::style("blue").blue()
        ));
}