Drop the build deps that moved into makeover-build
makeover and makeover-geometry were still declared as build dependencies
after the emitters left; the build script has not referenced either since.
makeover-build reaches them now.
Geometry picks up makeover-geometry 0.2.0's density_css through that path,
so the generated file is unchanged from the previous commit.
3 files changed,
+4 insertions,
-10 deletions
| 2248 |
2248 |
|
"mailparse",
|
| 2249 |
2249 |
|
"makeover 2.2.0",
|
| 2250 |
2250 |
|
"makeover-build",
|
| 2251 |
|
- |
"makeover-geometry",
|
| 2252 |
2251 |
|
"notify",
|
| 2253 |
2252 |
|
"notify-debouncer-mini",
|
| 2254 |
2253 |
|
"open",
|
| 3394 |
3393 |
|
|
| 3395 |
3394 |
|
[[package]]
|
| 3396 |
3395 |
|
name = "makeover-geometry"
|
| 3397 |
|
- |
version = "0.1.0"
|
| 3398 |
|
- |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
| 3399 |
|
- |
checksum = "9d8b94e51333489b0a79bb63ad4100ca49726f2048e2477f6ee3d6dd822f9327"
|
|
3396 |
+ |
version = "0.2.0"
|
| 3400 |
3397 |
|
|
| 3401 |
3398 |
|
[[package]]
|
| 3402 |
3399 |
|
name = "makeover-layout"
|
| 83 |
83 |
|
notify = "8.2"
|
| 84 |
84 |
|
notify-debouncer-mini = "0.7"
|
| 85 |
85 |
|
makeover = "2.2.0"
|
| 86 |
|
- |
# The invariant half of the design system. makeover resolves colour, which a
|
| 87 |
|
- |
# theme may override; this carries spacing, which no theme may touch.
|
| 88 |
|
- |
makeover-geometry = "0.1.0"
|
| 89 |
86 |
|
alloy_tui = "2.0.0"
|
| 90 |
87 |
|
toml = "1.1"
|
| 91 |
88 |
|
|
| 14 |
14 |
|
|
| 15 |
15 |
|
[build-dependencies]
|
| 16 |
16 |
|
tauri-build = { workspace = true }
|
| 17 |
|
- |
makeover.workspace = true
|
| 18 |
|
- |
makeover-geometry.workspace = true
|
| 19 |
|
- |
# Materialises themes/ and the phase-A stylesheet. Path dep while unpublished.
|
|
17 |
+ |
# Materialises all three generated files: themes/, geometry.css, layout.css.
|
|
18 |
+ |
# The build script needs nothing else; makeover and makeover-geometry reach it
|
|
19 |
+ |
# through here. Path dep while unpublished.
|
| 20 |
20 |
|
makeover-build = { path = "../../../Libraries/makeover-build" }
|
| 21 |
21 |
|
|
| 22 |
22 |
|
[dependencies]
|