Publishing to crates.io requires a description and a license; the repository and readme give the crates.io page the right links. The license texts ship as LICENSE-MIT and LICENSE-GPL. Dual licensing is valid while no lintian-derived code is in tree: shelling out to lintian is mere aggregation. When derived lint collections are implemented they must land in a separate GPL-2-only crate, since their copyright belongs to lintian's authors and cannot carry an MIT grant; the core crate stays dual.
49 lines
1.1 KiB
TOML
49 lines
1.1 KiB
TOML
[package]
|
|
name = "pkh"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
authors = ["vhaudiquet"]
|
|
description = "pkh is a packaging helper for Debian/Ubuntu packages"
|
|
license = "MIT OR GPL-2.0-only"
|
|
repository = "https://git.vhaudiquet.fr/vhaudiquet/pkh"
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5.51", features = ["cargo"] }
|
|
cmd_lib = "2.0.0"
|
|
crossterm = "0.28"
|
|
flate2 = "1.1.5"
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
libc = "0.2"
|
|
csv = "1.3.0"
|
|
reqwest = { version = "0.12.9", features = ["blocking", "json", "stream"] }
|
|
git2 = "0.20.2"
|
|
regex = "1"
|
|
chrono = "0.4"
|
|
tokio = { version = "1.41.1", features = ["full"] }
|
|
sha2 = "0.10.8"
|
|
sha1 = "0.10"
|
|
md-5 = "0.10"
|
|
hex = "0.4.3"
|
|
log = "0.4.28"
|
|
indicatif = "0.18.3"
|
|
indicatif-log-bridge = "0.2.3"
|
|
env_logger = "0.11.8"
|
|
futures-util = { version = "0.3.31", features = ["tokio-io"] }
|
|
tar = "0.4"
|
|
xz2 = "0.1"
|
|
serde_json = "1.0.145"
|
|
directories = "6.0.0"
|
|
ssh2 = "0.9.5"
|
|
gpgme = "0.11"
|
|
serde_yaml = "0.9"
|
|
lazy_static = "1.4.0"
|
|
unicode-width = "0.2"
|
|
parking_lot = "0.12"
|
|
suppaftp = "12"
|
|
|
|
[dev-dependencies]
|
|
test-log = "0.2.19"
|
|
serial_test = "3.3.1"
|
|
tempfile = "3.10.1"
|