pika-kernel-manager/Cargo.toml

33 lines
919 B
TOML
Raw Normal View History

2024-06-17 00:03:37 +02:00
[package]
name = "fedora-kernel-manager"
2024-07-25 18:08:58 +02:00
version = "0.1.3"
2024-06-17 00:03:37 +02:00
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
adw = { version = "0.6.0", package = "libadwaita", features = ["v1_5"] }
2024-06-18 14:45:10 +02:00
async-channel = "2.3.1"
2024-06-17 19:11:51 +02:00
duct = "0.13.7"
2024-06-17 21:13:02 +02:00
glib = "0.19.7"
2024-06-17 00:03:37 +02:00
gtk = { version = "0.8.2", package = "gtk4", features = ["v4_14"] }
2024-06-18 18:12:41 +02:00
homedir = "0.2.1"
2024-06-17 07:36:38 +02:00
linux-version = "0.1.1"
2024-06-19 01:14:07 +02:00
os_pipe = "1.2.0"
2024-06-18 20:13:04 +02:00
reqwest = { version = "0.11", features = ["blocking"] }
2024-06-17 07:36:38 +02:00
serde_json = "1.0.117"
2024-06-17 19:11:51 +02:00
version-compare = "0.2.0"
2024-06-21 18:09:23 +02:00
rust-i18n = "3.0.1"
2024-06-24 01:49:31 +02:00
textwrap = "0.16.1"
2024-06-17 00:03:37 +02:00
[build-dependencies]
glib-build-tools = "0.19.0"
2024-06-22 23:54:09 +02:00
[profile.release]
opt-level = 'z' # Optimize for size
lto = true # Enable link-time optimization
codegen-units = 1 # Reduce number of codegen units to increase optimizations
panic = 'abort' # Abort on panic
strip = true # Strip symbols from binary*