Wayland compositor (wlroots)
git clone https://git.lucas.co/cce-compositor.git
Cargo.toml (874B)
1 [package]
2 name = "cce-fx"
3 version = "0.1.0"
4 edition = "2021"
5
6 [lib]
7 doctest = false
8
9 [dependencies]
10 cce-ui = { git = "https://github.com/lsgalante/cce-ui.git", rev = "f3c970be244ad54121021a8223986ba553e09838" }
11 cce-window-manager = { git = "https://github.com/lsgalante/cce-window-manager.git", rev = "416f42c78fb63131121d8f2a86a607c31c829fc5" }
12 xkbcommon = "0.7"
13 serde = { version = "1", features = ["derive"] }
14 nix = { version = "0.29", features = ["signal", "process", "fs", "poll", "resource"] }
15 libc = "0.2"
16 bitflags = "2"
17 tokio = { version = "1.35", features = ["full"] }
18 serde_json = "1.0"
19 kdl = "4.6"
20 png = "0.17"
21 fontdue = "0.9.3"
22 clap = { version = "4.4", features = ["derive"] }
23 log = "0.4"
24 env_logger = "0.11"
25
26 [build-dependencies]
27 bindgen = "0.69"
28 pkg-config = "0.3"
29 cc = "1.0"
30
31 [[bin]]
32 name = "cce-fx"
33 path = "src/bin/cce.rs"
34
35 [profile.release]
36 debug = true
37
38