max / alloy_tui
1 file changed,
+4 insertions,
-4 deletions
| @@ -12,10 +12,10 @@ | |||
| 12 | 12 | [dependencies] | |
| 13 | 13 | ratatui = "0.30" | |
| 14 | 14 | makeover = "2.1.0" | |
| 15 | - | # Unpublished. A path dep with a version means local builds resolve to the tree | |
| 16 | - | # and `cargo publish` refuses until 0.1.0 is actually on crates.io, which is the | |
| 17 | - | # gate we want: this crate cannot ship depending on something nobody can fetch. | |
| 18 | - | makeover-geometry = { version = "0.1.0", path = "../makeover-geometry" } | |
| 15 | + | # Published, and no patch stanza: unlike makeover below, the registry copy of | |
| 16 | + | # 0.1.0 is byte-identical to the tree, so a path dep would buy nothing and hide | |
| 17 | + | # a divergence if one ever appeared. | |
| 18 | + | makeover-geometry = "0.1.0" | |
| 19 | 19 | ||
| 20 | 20 | # TEMPORARY. The bevel intents and the 256-color palette are in makeover's tree | |
| 21 | 21 | # and not yet on crates.io. Remove this the moment makeover publishes them, and |