melawy-welcome/Cargo.toml

31 lines
717 B
TOML
Raw Normal View History

2022-05-30 15:13:20 +05:00
[package]
name = "cachyos-hello"
2023-02-06 23:03:31 +05:00
version = "0.9.4"
2022-05-30 15:13:20 +05:00
authors = ["Vladislav Nepogodin <nepogodin.vlad@gmail.com>"]
license = "GPLv3"
edition = "2021"
[dependencies]
2022-07-03 04:47:20 +05:00
alpm = "2.2.1"
alpm-utils = "2.0.0"
pacmanconf = "2.0.0"
2022-07-03 04:47:20 +05:00
2022-05-30 15:13:20 +05:00
subprocess = "0.2.9"
2022-12-30 00:10:50 +05:00
once_cell = "1.17.0"
2022-05-30 15:13:20 +05:00
gettext-rs = { version = "0.7", features = ["gettext-system"] }
2022-12-29 19:59:04 +05:00
gtk = { version = "0.16.2", features = ["v3_24_30"] }
gio = { version = "0.16.7", features = ["v2_72"] }
gdk = "0.16.2"
gdk-pixbuf = "0.16.7"
glib = "0.16.7"
serde = { version = "1.0.152", features = ["derive"] }
2023-02-06 22:30:07 +05:00
serde_json = "1.0.92"
2023-01-25 03:36:50 +05:00
reqwest = { version = "0.11.14", features = ["blocking"] }
2022-05-30 15:13:20 +05:00
[profile.release]
strip = "symbols"
panic = "abort"
lto = true
opt-level = 3
codegen-units = 1