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

Cargo.toml (1K)

 1 [package]
 2 name = "cce-designer"
 3 version = "0.1.0"
 4 edition = "2021"
 5 
 6 [dependencies]
 7 cce-ui = { git = "https://github.com/lsgalante/cce-ui.git", rev = "8c2f2d334caebcb5c1217fd0247303c333192ad7" }
 8 smithay-client-toolkit = "0.19.2"
 9 calloop = "0.13.0"
10 calloop-wayland-source = "0.3.0"
11 wayland-client = { version = "0.31", features = ["system"] }
12 xkeysym = "0.2"
13 bytemuck = { version = "1", features = ["derive"] }
14 # Only the vk-smoke bin shapes text directly now — the app's text goes through
15 # the engine's display-list pass (display_list_text) since the paint migration.
16 tokio = { version = "1", features = ["full"] }
17 glam = "0.29"
18 serde = { version = "1", features = ["derive"] }
19 serde_json = "1"
20 toml = "0.8"
21 log = "0.4"
22 env_logger = "0.11"
23 png = "0.17"
24 rhai = "1"
25 
26 [[bin]]
27 name = "cce-designer"
28 path = "src/main.rs"
29 
30 # Standalone smoke test for the ash renderer (opens its own window; does not
31 # touch the main app). Run inside a Wayland session:
32 #   cargo run -p cce-designer --bin vk-smoke
33 [[bin]]
34 name = "vk-smoke"
35 path = "src/vk_smoke.rs"
36 
37 
38