makeover-tui 0.28.0

The terminal renderer for makeover-layout, on ratatui. Colour stops being the constraint above 256 entries; geometry never does, because an edge occupies a whole cell on every side.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# How Bento releases makeover-tui. Lives here rather than in the daemon's config so it is
# versioned with the code it describes.

# A crate, not an app: one publish.rhai rather than a recipe per platform, and
# the target below names the host that uploads rather than a build matrix.
kind = "library"

targets = ["linux/x86_64"]

# The gates build what a consumer builds, and `got` takes this crate with the
# theme feature on. Without this line the release gate ran clippy and the suite
# against the default feature set, which is everything here EXCEPT the theme
# loader -- so `Theme`, its derivations and every test over them were checked by
# nobody at release time. Declared here rather than in publish.rhai so the flag
# cannot be present on one step and missing from another.
features = ["theme"]