system settings
git clone https://git.lucas.co/cce-system-interface.git
Cargo.toml (808B)
1 [package]
2 name = "cce-system-interface"
3 version = "0.1.0"
4 edition = "2021"
5
6 [dependencies]
7 keyring = { version = "3", features = ["sync-secret-service"] }
8 cce-ui = { git = "https://github.com/lsgalante/cce-ui.git", rev = "f3c970be244ad54121021a8223986ba553e09838" }
9 smithay-client-toolkit = "0.19.2"
10 calloop = "0.13.0"
11 calloop-wayland-source = "0.3.0"
12 wayland-client = { version = "0.31", features = ["system"] }
13 xkeysym = "0.2"
14 tokio = { version = "1", features = ["full"] }
15 zbus = "5"
16 futures = "0.3"
17 serde = { version = "1", features = ["derive"] }
18 serde_json = "1"
19 kdl = "4.6"
20 log = "0.4"
21 env_logger = "0.11"
22 reqwest = { version = "0.12", features = ["json"] }
23 ring = "0.17.14"
24 base64 = "0.22"
25
26
27 [lib]
28 name = "cce_settings"
29 path = "src/lib.rs"
30
31 [[bin]]
32 path = "src/main.rs"
33 name = "cce-system-interface"