#ascii-art #ascii

neofiglet

The FIGlet libraries all the cool kids use

2 releases

0.1.1 Aug 18, 2021
0.1.0 Aug 18, 2021

#582 in Command-line interface

Download history 1/week @ 2024-07-21 40/week @ 2024-07-28 6/week @ 2024-08-04 5/week @ 2024-08-11 3/week @ 2024-08-18 1/week @ 2024-08-25 12/week @ 2024-09-01 15/week @ 2024-09-08 15/week @ 2024-09-15 42/week @ 2024-09-22 18/week @ 2024-09-29 1/week @ 2024-10-06 12/week @ 2024-10-13 14/week @ 2024-10-20 22/week @ 2024-10-27 18/week @ 2024-11-03

66 downloads per month
Used in 3 crates

Apache-2.0

87KB
447 lines

neofiglet

docs crates.io

The FIGlet library all the cool kids use!

Note (Pretty important)

This is currently in a full rewrite since this is easier than hack good kerning into this version. (See #3)

Therefore, the API will completely break within the next few weeks as I will release a 1.0.0.

I mean, this is not a problem as this version is feature-complete, just that if you can wait a few weeks... good stuff will come.

Example

use neofiglet::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

neofiglet is based on figlet-rs, which sadly is not maintained anymore.

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

See LICENSE and COPYRIGHT for details.

No runtime deps