diff --git a/local/recipes/system/cub/source/cub-cli/Cargo.toml b/local/recipes/system/cub/source/cub-cli/Cargo.toml index d54ad3ba..d1c102da 100644 --- a/local/recipes/system/cub/source/cub-cli/Cargo.toml +++ b/local/recipes/system/cub/source/cub-cli/Cargo.toml @@ -13,6 +13,6 @@ path = "src/main.rs" [dependencies] cub-lib = { path = "../cub-lib" } -redox-pkg = { path = "../../../../../../recipes/core/pkgutils/source/pkg-lib", default-features = false, features = ["indicatif"] } +redox-pkg = { git = "https://gitlab.redox-os.org/redox-os/pkgutils.git", default-features = false, features = ["indicatif"] } clap = { workspace = true } termion = "4.0.6" diff --git a/local/recipes/system/cub/source/cub-cli/src/main.rs b/local/recipes/system/cub/source/cub-cli/src/main.rs index d67b7fb6..fb62b818 100644 --- a/local/recipes/system/cub/source/cub-cli/src/main.rs +++ b/local/recipes/system/cub/source/cub-cli/src/main.rs @@ -223,7 +223,7 @@ fn install_package(context: &AppContext, package: &str) -> Result<(), Box { let applied = apply_library_changes(&mut library)?; println!( @@ -318,7 +318,7 @@ fn build_local_dir(context: &AppContext, dir: &Path) -> Result<(), Box