From 2c3afb4956f2238505cd7d1df56388af5c6ae8a9 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Thu, 12 Jun 2025 12:07:52 -0600 Subject: [PATCH] 0.2.33: fix compilation with new pkgar --- Cargo.lock | 2 +- Cargo.toml | 10 +++++----- src/bin/installer_tui.rs | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e50b567e94..03500fed44 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1640,7 +1640,7 @@ dependencies = [ [[package]] name = "redox_installer" -version = "0.2.32" +version = "0.2.33" dependencies = [ "anyhow", "arg_parser", diff --git a/Cargo.toml b/Cargo.toml index 4ab4083477..6d75d3627b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 "] @@ -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" diff --git a/src/bin/installer_tui.rs b/src/bin/installer_tui.rs index 554b644973..8d5ef15402 100644 --- a/src/bin/installer_tui.rs +++ b/src/bin/installer_tui.rs @@ -177,7 +177,7 @@ fn package_files( root_path: &Path, config: &mut Config, files: &mut Vec, -) -> Result<(), pkgar::Error> { +) -> Result<(), anyhow::Error> { //TODO: Remove packages from config where all files are located (and have valid shasum?) config.packages.clear();