From da1948b9d9dd1ae0b1fe2ddbdd7ab2ac756dfc84 Mon Sep 17 00:00:00 2001 From: Manuel Quarneti Date: Wed, 8 Oct 2025 18:58:18 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=91=20Fix=20compilation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Cargo.lock | 9 +++++---- Cargo.toml | 6 +++--- nod/Cargo.toml | 1 + 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3bfd2d0..9f6fa85 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -90,9 +90,9 @@ dependencies = [ [[package]] name = "block-padding" -version = "0.4.1" +version = "0.4.0-rc.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41d28ed5f5f65056148fd25e1a596b5b6d9e772270abf9a9085d7cbfbf26c563" +checksum = "7e59c1aab3e6c5e56afe1b7e8650be9b5a791cb997bdea449194ae62e4bf8c73" dependencies = [ "hybrid-array", ] @@ -394,9 +394,9 @@ dependencies = [ [[package]] name = "inout" -version = "0.2.1" +version = "0.2.0-rc.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7357b6e7aa75618c7864ebd0634b115a7218b0615f4cb1df33ac3eca23943d4" +checksum = "1603f76010ff924b616c8f44815a42eb10fb0b93d308b41deaa8da6d4251fd4b" dependencies = [ "block-padding", "hybrid-array", @@ -569,6 +569,7 @@ dependencies = [ "adler", "aes", "base16ct", + "block-padding", "bytes", "bzip2", "cbc", diff --git a/Cargo.toml b/Cargo.toml index 71d16b8..5ccf501 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,8 +21,8 @@ repository = "https://github.com/encounter/nod" keywords = ["gamecube", "wii", "iso", "wbfs", "rvz"] [workspace.dependencies] -digest = { version = "0.11.0-rc.0", default-features = false } -md-5 = { version = "0.11.0-rc.0", default-features = false } -sha1 = { version = "0.11.0-rc.0", default-features = false } +digest = { version = "0.11.0-rc.3", default-features = false } +md-5 = { version = "0.11.0-rc.2", default-features = false } +sha1 = { version = "0.11.0-rc.2", default-features = false } tracing = "0.1" zerocopy = { version = "0.8", features = ["alloc", "derive"] } diff --git a/nod/Cargo.toml b/nod/Cargo.toml index e35817f..3b6c618 100644 --- a/nod/Cargo.toml +++ b/nod/Cargo.toml @@ -52,3 +52,4 @@ xxhash-rust = { version = "0.8", features = ["xxh64"] } zerocopy = { workspace = true } zstd = { version = "0.13", optional = true, default-features = false } zstd-safe = { version = "7.2", optional = true, default-features = false } +block-padding = "=0.4.0-rc.4"