Initial commit

- pkh created
- basic 'get' command to obtain a source package
This commit is contained in:
2025-11-26 00:22:09 +01:00
commit c466ad1846
6 changed files with 564 additions and 0 deletions

20
Cargo.toml Normal file
View File

@@ -0,0 +1,20 @@
[package]
name = "pkh"
version = "0.1.0"
edition = "2021"
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"] }
git2 = "0.19.0"
tokio = { version = "1.41.1", features = ["full"] }
sha2 = "0.10.8"
hex = "0.4.3"
[dev-dependencies]
tempfile = "3.10.1"