12 releases

0.1.17 Feb 20, 2025
0.1.16 Feb 20, 2025
0.1.6 Jan 30, 2025

#1111 in Text processing

Download history 310/week @ 2025-01-27 26/week @ 2025-02-03 854/week @ 2025-02-17 95/week @ 2025-02-24 49/week @ 2025-03-03 1/week @ 2025-03-10

419 downloads per month

MIT license

180KB
671 lines

Incredifont - A Rust library for creating beautiful terminal banners


Incredimo

dead simple banner generator image

Features

  • Sometimes you just need a banner
  • No ffi, no dependencies, no build system
  • simple println! and call it a day 😉

Example

use incredimo::Banner;

fn main() {
    let banner = Banner::new("INCREDIBLE")
        .with_colors()
        .with_subtitle("IMPOSSIBLE IS JUST A CHALLENGE YET TO BE SOLVED")
        .with_line_length(80)
        .build()
        .unwrap();
}

Dependencies