A Rust library for FIGlet to generate ascii art.
```rust use figlet_rs::FIGfont;
fn main() { let standardfont = FIGfont::standard().unwrap(); let figure = standardfont.convert("Hello Rust"); assert!(figure.is_some()); println!("{}", figure.unwrap()); } ```
rs-figlet is distributed under the terms of the Apache License (Version 2.0).
See LICENSE-APACHE and COPYRIGHT for details.