boxx 0.0.3-beta

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

pub fn main() {
    Boxx::builder()
        .text_alignment(Alignment::Right)
        .box_alignment(Alignment::Right)
        .build()
        .display("This box has been\nright aligned while we weren't looking!\n...why!??! ☹️");
}