-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
34 lines (28 loc) · 907 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "control_panel_gui"
version = "0.1.0"
edition = "2021"
default-run = "ctrl-panel"
[dependencies]
gettext-rs = { version = "0.7", features = ["gettext-system"] }
gtk = { version = "0.7", package = "gtk4" }
adw = { version = "0.5", package = "libadwaita", features = ["v1_4"] }
clap = {version = "4.5.4", features = ["derive", "env"]}
regex = "1"
dbus = "0.9"
tokio = {version = "1.0", features = ["rt", "time", "macros"]}
async-channel = "2.3.1"
serde_json = "1.0"
base64 = "0.21"
chrono = "0.4"
octocrab = "0.32"
hyper = { version = "0.14", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
config = "0.13"
givc-client = { git = "https://github.com/tiiuae/ghaf-givc", branch = "main" }
givc-common = { git = "https://github.com/tiiuae/ghaf-givc", branch = "main" }
[build-dependencies]
glib-build-tools = "0.18"
[[bin]]
name = "ctrl-panel"
path = "src/main.rs"