Fix compilation with new pkgar

This commit is contained in:
Jeremy Soller
2025-07-02 13:54:30 -06:00
parent 8f21b64a3d
commit a80429ac27
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -6,9 +6,9 @@ edition = "2021"
[dependencies]
anyhow = "1"
libredox = "0.1"
pkgar = "0.1.9"
pkgar-core = "0.1.0"
pkgar-keys = "0.1.0"
pkgar = "0.1.18"
pkgar-core = "0.1.18"
pkgar-keys = "0.1.18"
redox_installer = "0.2.34"
redox_syscall = "0.5"
toml = "0.5.6"
+1 -1
View File
@@ -247,7 +247,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();