31 lines
759 B
TOML
31 lines
759 B
TOML
[package]
|
|
name = "pacwoman"
|
|
version = "1.0.0"
|
|
edition = "2024"
|
|
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"
|
|
|
|
[[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"
|
|
clap = { version = "4.5.32", features = ["derive"] }
|
|
flate2 = "1.1.0"
|
|
gpgme = { version = "0.11.0", features = ["v1_18"] }
|
|
regex = "1.11.1"
|
|
reqwest = { version = "0.12.12", features = ["blocking"] }
|
|
ruzstd = "0.8.0"
|
|
sha256 = "1.6.0"
|
|
tar = "0.4.44"
|
|
time = { version = "0.3.39", features = ["formatting"] }
|
|
url = "2.5.4"
|
|
users = "0.11.0"
|