-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
41 lines (31 loc) · 1.1 KB
/
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
35
36
37
38
39
40
41
[package]
name = "icicle"
version = "0.0.2"
edition = "2021"
default-run = "icicle"
[dependencies]
relm4 = { version = "0.7.0-beta.2", features = ["libadwaita", "macros"] }
relm4-components = { package = "relm4-components", version = "0.7.0-beta.2"}
adw = { package = "libadwaita", version = "0.5", features = ["v1_2", "gtk_v4_6"] }
gtk = { package = "gtk4", version = "0.7", features = ["v4_6"] }
glib = { package = "glib", version = "0.18", features = ["v2_68"] }
tokio = { version = "1.32", features = ["full"] }
tracker = "0.2"
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
log = "0.4"
simplelog = "0.12"
anyhow = "1.0"
isolang = "2.3.0"
gnome-desktop = "0.4.2"
libgweather = "4.3"
size = "0.4"
vte = { package = "vte4", git = "https://gitlab.gnome.org/vlinkz/vte4-rs", branch = "0.7" }
distinst-disks = { git = "https://github.com/pop-os/distinst/" }
reqwest = { version = "0.11", features = ["blocking"] }
gettext-rs = { version = "0.7", features = ["gettext-system"] }
regex = "1.9"
[workspace]
members = [".", "icicle-helper"]
default-members = [".", "icicle-helper"]