All checks were successful
CI / build (push) Successful in 7m18s
Multiple changes: - New contexts (schroot, unshare) - Cross-building quirks, with ephemeral contexts and repositories management - Contexts with parents, global context manager, better lifetime handling - Local building of binary packages - Pull: pulling dsc files by default - Many small bugfixes and changes Co-authored-by: Valentin Haudiquet <valentin.haudiquet@canonical.com> Co-committed-by: Valentin Haudiquet <valentin.haudiquet@canonical.com>
34 lines
752 B
TOML
34 lines
752 B
TOML
[package]
|
|
name = "pkh"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
authors = ["vhaudiquet"]
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5.51", features = ["cargo"] }
|
|
cmd_lib = "2.0.0"
|
|
flate2 = "1.1.5"
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
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"
|
|
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"
|
|
tempfile = "3.10.1"
|
|
|
|
[dev-dependencies]
|
|
test-log = "0.2.19"
|