3 unstable releases
0.2.1 | Apr 1, 2021 |
---|---|
0.2.0 | Feb 22, 2021 |
0.1.1 | Feb 19, 2021 |
0.1.0 |
|
#79 in #term
48 downloads per month
Used in powerpack-cli
7KB
137 lines
peter
Peter builds on the ansi_term
crate to allow styling of anything
implementing Display
and makes colorizing text less verbose to use by
providing the Stylize
trait.
Getting started
use peter::Stylize;
println!("This is in red: {}", "a red string".red());
println!("How about some {}?", "bold and underline".bold().underline());
License
Licensed under either of
- Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
lib.rs
:
Peter builds on the ansi_term
crate to allow styling of anything
implementing Display
and makes colorizing text less verbose to use by
providing the Stylize
trait.
Examples
use peter::Stylize;
println!("This is in red: {}", "a red string".red());
println!("How about some {}?", "bold and underline".bold().underline());
Dependencies
~240KB