pacwoman/Cargo.toml

32 lines
759 B
TOML
Raw Permalink Normal View History

2025-03-09 20:26:05 -05:00
[package]
name = "pacwoman"
2025-03-10 21:34:50 -05:00
version = "1.0.0"
2025-03-09 20:26:05 -05:00
edition = "2024"
2025-03-10 21:41:27 -05:00
description = "Alternate client for arch linux package repositories"
license = "GPL-3.0-or-later"
homepage = "https://git.verygay.fyi/ArthurB/pacwoman"
repository = "https://git.verygay.fyi/ArthurB/pacwoman"
2025-03-09 20:26:05 -05:00
[[bin]]
name = "pacwoman-bin"
path = "src/main.rs"
[lib]
name = "pacwoman"
path = "src/lib/lib.rs"
[dependencies]
base64 = "0.22.1"
bytes = "1.10.1"
2025-03-10 19:31:06 -05:00
clap = { version = "4.5.32", features = ["derive"] }
2025-03-09 20:26:05 -05:00
flate2 = "1.1.0"
gpgme = { version = "0.11.0", features = ["v1_18"] }
2025-03-10 19:31:06 -05:00
regex = "1.11.1"
2025-03-09 20:26:05 -05:00
reqwest = { version = "0.12.12", features = ["blocking"] }
ruzstd = "0.8.0"
2025-03-09 20:26:05 -05:00
sha256 = "1.6.0"
tar = "0.4.44"
time = { version = "0.3.39", features = ["formatting"] }
url = "2.5.4"
users = "0.11.0"