41 lines
1.0 KiB
TOML
41 lines
1.0 KiB
TOML
[package]
|
|
name = "pikman-update-manager"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[lib]
|
|
name = "pika_unixsocket_tools"
|
|
path = "src/lib/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "pikman-update-manager"
|
|
path = "src/bin/gui/main.rs"
|
|
|
|
[[bin]]
|
|
name = "apt_update"
|
|
path = "src/bin/apt/apt_update/main.rs"
|
|
|
|
[[bin]]
|
|
name = "apt_full_upgrade"
|
|
path = "src/bin/apt/apt_full_upgrade/main.rs"
|
|
|
|
[dependencies]
|
|
adw = { version = "0.7.0", package = "libadwaita", features = ["v1_4"] }
|
|
gtk = { version = "0.9.0", package = "gtk4", features = ["v4_12"] }
|
|
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"
|
|
pretty-bytes = "0.2.2"
|
|
crossbeam-utils = "0.8.20"
|
|
chrono = "0.4.38"
|
|
lock_api = "0.4.2"
|
|
libflatpak = { version = "0.5.0", package = "libflatpak", features = ["v1_11_1"] }
|
|
|