Vari (Väri) is a Rust library for formatting strings with colors and cosmetic stuff to the terminal. Like Rich library for Python.
rs
[dependencies]
vari = 0.1
```rs use vari::format;
fn main() { // [$/] is shorthand for [$reset] let message = vari::format("[$blue]Hello, [$green]World![$/]"); println!("{}", message); } ```
This crate is under AGPL-3.0 license.