Expand description
Cargo-like printing
Easily print beautiful formatted messages like Cargo does.
Examples
use cprint::{cprint, Color, Coloration};
cprint!("Using", "cprint crate!", Color::Green);Re-exports
pub use coloration::Color;pub use coloration::Coloration;Modules
Macros
Print an error like Cargo does. The argument is the message of the error.
The end of the title is padded with spaces to make it 12 characters long.
Print a message like Cargo does. The first argument is the title of the message, the second argument is the message itself and the third argument is the color of the title.
The end of the title is padded with spaces to make it 12 characters long.