git.lucas.co / cce-designer
graphic design tool
git clone https://git.lucas.co/cce-designer.git

commit583f5a47bfa3c34f47b1e05414660cf4375a8723
parentd2c9a14e1a
authorLucas Galante <[email protected]>
date2026-08-13 23:13
build: drop the unused raw-window-handle declaration

More of the retired wgpu-path residue, after the wgpu/bytemuck sweep.
Nothing in this crate names raw-window-handle anywhere — src, tests, or build
script.

Verified by building, not just grepping: a declaration can exist to pin
or unify a transitive version. It did not here — the workspace lock
resolves byte-identically before and after (531 packages, no version
moved), so this changes nothing that compiles.

raw-window-handle remains a real dependency of cce-ui (wayland.rs), and
pollster of cce-status-interface; both keep their declarations.

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

diff --git a/Cargo.toml b/Cargo.toml
index f764d3e..77a91c5 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -10,7 +10,6 @@ calloop = "0.13.0"
 calloop-wayland-source = "0.3.0"
 wayland-client = { version = "0.31", features = ["system"] }
 xkeysym = "0.2"
-raw-window-handle = "0.6"
 bytemuck = { version = "1", features = ["derive"] }
 # Only the vk-smoke bin shapes text directly now — the app's text goes through
 # the engine's display-list pass (display_list_text) since the paint migration.