Skip to main content

max / alloy

Take alloy_tui 3.0.0 from the registry The last [patch.crates-io] stanza is gone. Every dependency of this workspace now resolves from crates.io -- alloy_tui 3.0.0, makeover 2.2.0, makeover-geometry 0.1.0 -- so a clean clone builds the console and the skeleton generator without a sibling checkout beside it. Closes the release chain in GO ac9e12d4.
Author: Max Johnson <me@maxj.phd> · 2026-07-27 03:05 UTC
Signed with PGP, not checked
Commit: 0ce955c07a6b2b6d4bd53384b6c14c94a29dd2b2
Parent: 7296766
4 files changed, +5 insertions, -14 deletions
M Cargo.lock +3 -1
@@ -37,7 +37,9 @@
37 37
38 38 [[package]]
39 39 name = "alloy_tui"
40 - version = "2.0.0"
40 + version = "3.0.0"
41 + source = "registry+https://github.com/rust-lang/crates.io-index"
42 + checksum = "efed0216c9467fee5238c3c4b07b3a02ab2478e77f76b6e54362d6c13a3b63a7"
41 43 dependencies = [
42 44 "makeover",
43 45 "makeover-geometry",
M Cargo.toml -11
@@ -19,17 +19,6 @@
19 19 codegen-units = 1
20 20 strip = "symbols"
21 21
22 - # TEMPORARY, and now half the size it was. makeover's stanza is gone: the bevel
23 - # intents and the 256-color palette shipped in 2.2.0, which is what the
24 - # requirement above names.
25 - #
26 - # alloy_tui stays until its own release. crates.io has 2.0.0; the tree carries
27 - # the keymap overlay, the spacing vocabulary, and the two border derivations
28 - # skelgen consumes, none of which are published. That release is a major, since
29 - # `Theme` gained `bevel_light` and `bevel_dark` and is not `#[non_exhaustive]`.
30 - [patch.crates-io]
31 - alloy_tui = { path = "../Libraries/alloy_tui" }
32 -
33 22 [workspace.lints.rust]
34 23 unused = "warn"
35 24 unreachable_pub = "warn"
@@ -13,7 +13,7 @@
13 13 path = "src/main.rs"
14 14
15 15 [dependencies]
16 - alloy_tui = "2.0.0"
16 + alloy_tui = "3.0.0"
17 17 anyhow = "1"
18 18 clap = { version = "4", features = ["derive"] }
19 19 ratatui.workspace = true
@@ -13,7 +13,7 @@
13 13 path = "src/main.rs"
14 14
15 15 [dependencies]
16 - alloy_tui = "2.0.0"
16 + alloy_tui = "3.0.0"
17 17 anyhow = "1"
18 18 clap = { version = "4", features = ["derive"] }
19 19 makeover.workspace = true