🧹 disable unused features to decrease binary size
This commit is contained in:
parent
7608acd820
commit
049763cc85
16
Cargo.toml
16
Cargo.toml
|
@ -6,19 +6,19 @@ license = "GPLv3"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
alpm = "2.2.1"
|
alpm = { default-features = false, version = "2.2.1" }
|
||||||
alpm-utils = "2.0.0"
|
alpm-utils = { features = ["conf"], default-features = false, version = "2.0.0" }
|
||||||
pacmanconf = "2.0.0"
|
pacmanconf = "2.0.0"
|
||||||
|
|
||||||
subprocess = "0.2.9"
|
subprocess = "0.2.9"
|
||||||
once_cell = "1.17.1"
|
once_cell = { default-features = false, version = "1.17.1" }
|
||||||
gettext-rs = { version = "0.7", features = ["gettext-system"] }
|
gettext-rs = { version = "0.7", default-features = false }
|
||||||
gtk = { version = "0.17.0", features = ["v3_24_30"] }
|
gtk = { version = "0.17.0", default-features = false }
|
||||||
gio = { version = "0.17.3", features = ["v2_72"] }
|
gio = { version = "0.17.3", default-features = false }
|
||||||
gdk = "0.17.0"
|
gdk = "0.17.0"
|
||||||
gdk-pixbuf = "0.17.0"
|
gdk-pixbuf = "0.17.0"
|
||||||
glib = "0.17.3"
|
glib = { default-features = false, version = "0.17.3" }
|
||||||
serde = { version = "1.0.155", features = ["derive"] }
|
serde = { version = "1.0.155", default-features = false }
|
||||||
serde_json = "1.0.94"
|
serde_json = "1.0.94"
|
||||||
reqwest = { version = "0.11.14", features = ["blocking"] }
|
reqwest = { version = "0.11.14", features = ["blocking"] }
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue