Skip to main content

max / makeover-tui

806 B · 17 lines History Blame Raw
1 # How Bento releases makeover-tui. Lives here rather than in the daemon's config so it is
2 # versioned with the code it describes.
3
4 # A crate, not an app: one publish.rhai rather than a recipe per platform, and
5 # the target below names the host that uploads rather than a build matrix.
6 kind = "library"
7
8 targets = ["linux/x86_64"]
9
10 # The gates build what a consumer builds, and `got` takes this crate with the
11 # theme feature on. Without this line the release gate ran clippy and the suite
12 # against the default feature set, which is everything here EXCEPT the theme
13 # loader -- so `Theme`, its derivations and every test over them were checked by
14 # nobody at release time. Declared here rather than in publish.rhai so the flag
15 # cannot be present on one step and missing from another.
16 features = ["theme"]
17