git.lucas.co / cce-color-editor
color picker and palette editor
git clone https://git.lucas.co/cce-color-editor.git

commitd11eaf76d1c294befe73d569949fbaff5b1abb13
parent8e8816e1ef
authorLucas Galante <[email protected]>
date2026-08-13 23:16
build: drop the unused glyphon declaration

The last of the retired wgpu-path residue, after the wgpu/bytemuck and
pollster/raw-window-handle sweeps. This crate never names glyphon: it
gets its FontSystem from cce_ui::create_font_system() by inference and
never spells the type, so it needs no text-library dependency of its own.

Crates that DO name a glyphon type (cce-files, cce-terminal,
cce-status-interface and others) keep theirs, as does cce-ui, which is
where the dependency really lives.

Nothing changes about what compiles — glyphon still reaches this crate
through cce-ui, and the workspace lock resolves byte-identically before
and after (531 packages, no version moved). Verified by building, which
is what caught a genuine pollster use a grep had missed earlier in this
sweep.

 Cargo.toml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/Cargo.toml b/Cargo.toml
index f5db531..0d1866a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -6,7 +6,6 @@ edition = "2021"
 [dependencies]
 cce-ui = { path = "../cce-ui" }
 wayland-client = { version = "0.31", features = ["system"] }
-glyphon = "0.8"
 calloop = "0.13.0"
 tokio = { version = "1", features = ["full"] }