incredimo 0.1.17

just another font for your terminal
docs.rs failed to build incredimo-0.1.17
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: incredimo-0.1.6

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();
}