0.2.33: fix compilation with new pkgar

This commit is contained in:
Jeremy Soller
2025-06-12 12:07:52 -06:00
parent 2c8c6bf30f
commit 2c3afb4956
3 changed files with 7 additions and 7 deletions
Generated
+1 -1
View File
@@ -1640,7 +1640,7 @@ dependencies = [
[[package]]
name = "redox_installer"
version = "0.2.32"
version = "0.2.33"
dependencies = [
"anyhow",
"arg_parser",
+5 -5
View File
@@ -1,6 +1,6 @@
[package]
name = "redox_installer"
version = "0.2.32"
version = "0.2.33"
description = "A Redox filesystem builder"
license = "MIT"
authors = ["Jeremy Soller <jackpot51@gmail.com>"]
@@ -32,12 +32,12 @@ fatfs = "0.3.0"
fscommon = "0.1.1"
gpt = "3.0.0"
libc = "0.2.70"
pkgar = "0.1.16"
pkgar-core = "0.1.16"
pkgar-keys = "0.1.16"
pkgar = "0.1.17"
pkgar-core = "0.1.17"
pkgar-keys = "0.1.17"
rand = "0.8"
redox_liner = "0.5"
redox-pkg = { version = "0.2.1", features = ["indicatif"] }
redox-pkg = { version = "0.2.5", features = ["indicatif"] }
redox_syscall = "0.5.2"
redoxfs = "0.6.11"
rust-argon2 = "0.8.2"
+1 -1
View File
@@ -177,7 +177,7 @@ fn package_files(
root_path: &Path,
config: &mut Config,
files: &mut Vec<String>,
) -> Result<(), pkgar::Error> {
) -> Result<(), anyhow::Error> {
//TODO: Remove packages from config where all files are located (and have valid shasum?)
config.packages.clear();