mirror of
https://codeberg.org/Toasterson/ips.git
synced 2026-04-10 13:20:42 +00:00
- Introduced `pkg6recv` for downloading packages from IPS repositories with support for recursive dependency fetching. - Implemented CLI commands with `clap` for source/destination setup, package selection, and publisher defaults. - Added `ConsoleProgressReporter` for detailed receive progress visibility. - Enhanced the `Manifest` parser to support JSON format alongside IPS text format. - Updated `FileBackend` and `RestBackend` repositories to fetch manifests and payloads in new operations. - Extended `Digest` utilities for payload integrity checks. - Added tests to verify basic functionality and manifest format preservation.
21 lines
583 B
TOML
21 lines
583 B
TOML
[package]
|
|
name = "pkg6recv"
|
|
description.workspace = true
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license-file.workspace = true
|
|
repository.workspace = true
|
|
readme.workspace = true
|
|
keywords.workspace = true
|
|
|
|
[dependencies]
|
|
clap = { version = "4", features = ["derive"] }
|
|
miette = { version = "7", features = ["fancy"] }
|
|
thiserror = "2"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
libips = { path = "../libips", version = "*"}
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tempfile = "3.8"
|