pikman-update-manager/Cargo.toml

36 lines
911 B
TOML
Raw Normal View History

2024-06-26 04:09:44 +02:00
[package]
2024-06-29 00:03:47 +02:00
name = "pika-idk-manager"
2024-06-26 04:09:44 +02:00
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2024-06-26 13:31:55 +02:00
[lib]
name = "pika_unixsocket_tools"
2024-07-10 10:39:56 +02:00
path = "src/lib/lib.rs"
[[bin]]
name = "pika-idk-manager"
path = "src/bin/gui/main.rs"
2024-06-26 13:31:55 +02:00
2024-06-26 04:09:44 +02:00
[[bin]]
name = "apt_update"
2024-07-10 10:39:56 +02:00
path = "src/bin/apt/apt_update/main.rs"
[[bin]]
name = "apt_full_upgrade"
path = "src/bin/apt/apt_full_upgrade/main.rs"
2024-06-26 04:09:44 +02:00
[dependencies]
2024-07-10 02:35:12 +02:00
adw = { version = "0.6.0", package = "libadwaita", features = ["v1_4"] }
gtk = { version = "0.8.2", package = "gtk4", features = ["v4_12"] }
2024-06-26 04:09:44 +02:00
async-channel = "2.1.1"
rust-i18n = "3.0.1"
rust-apt = { git = "https://gitlab.com/volian/rust-apt" }
tokio = { version = "1", features = ["full"] }
tokio-uds = "0.2"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.118"
async-trait = "0.1.80"
futures = "0.3.30"
2024-06-30 23:23:36 +02:00
pretty-bytes = "0.2.2"