boxy

Crates.ioboxy
lib.rsboxy
version0.1.0
sourcesrc
created_at2022-01-10 23:36:37.022662
updated_at2022-01-10 23:36:37.022662
descriptionDeclarative builder for Unicode box-drawing characters
homepagehttps://github.com/mcy/boxy
repositoryhttps://github.com/mcy/boxy
max_upload_size
id511953
size38,480
Miguel Young (mcy)

documentation

README

boxy - declarative box-drawing characters

Crates.io docs.rs

Box-drawing characters are used extensively in text user interfaces software for drawing lines, boxes, and other shapes. Unicode provides a large assortment of them in the Box Drawing block (U+2500 to U+257F).

Unfortunately it can be quite irritating to construct code points in this range, and generating graphics using box drawing characters can be tedious. This is true even when explicit formulas exist for subsets of the block.

This crate provides the relevant lookup tables and exposes a nice interface for generating characters via the boxy::Char type. For example:

let corner = boxy::Char::upper_left(boxy::Weight::Doubled);
let side = boxy::Char::horizontal(boxy::Weight::Doubled);

let bx = format!(
  "{}{}{}\n{}{}{}",
  corner, side, corner.rotate_cw(1),
  corner.rotate_cw(3), side, corner.rotate_cw(2),
);

assert_eq!(bx, "
╔═╗
╚═╝
".trim());

This crate is no_std and will never panic, making it ideal for your a e s t h e t i c kernel panic messages.

Commit count: 1

cargo fmt