boxy-cli 2.0.0

A simple crate to create coloured textboxes in rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Convenient imports for working with Boxy CLI.
//!
//! This module re-exports all the essential types and functions that are commonly used when
//! working with the `boxy-cli` library. Import this module to get everything you need at once.
//!
//! # Example
//!
//! ```
//! use boxy_cli::prelude::*;
//!
//! let mut my_box = Boxy::new(BoxType::Double, "#00ffff");
//! my_box.add_text_sgmt("Hello, World!", "#ffffff", BoxAlign::Center);
//! ```

pub use crate::boxer::*;
pub use crate::constructs::{BoxType, BoxAlign, BoxPad};
pub use crate::boxy;