figlet-rs

Crates.iofiglet-rs
lib.rsfiglet-rs
version0.1.5
sourcesrc
created_at2019-06-23 15:49:19.777524
updated_at2023-02-14 15:35:24.549763
descriptionRust implementation of FIGlet to create ascii art
homepagehttps://github.com/yuanbohan/rs-figlet
repositoryhttps://github.com/yuanbohan/rs-figlet
max_upload_size
id143006
size61,156
yuanbohan (yuanbohan)

documentation

README

figlet-rs

CI docs crates.io

A Rust library for FIGlet to generate ascii art.

Example

use figlet_rs::FIGfont;

fn main() {
    let standard_font = FIGfont::standard().unwrap();
    let figure = standard_font.convert("Hello Rust");
    assert!(figure.is_some());
    println!("{}", figure.unwrap());
}

figlet-sample

License

rs-figlet is distributed under the terms of the Apache License (Version 2.0).

See LICENSE-APACHE and COPYRIGHT for details.

Commit count: 32

cargo fmt