diff --git a/agb-image-converter/Cargo.toml b/agb-image-converter/Cargo.toml index 40a287826..19fd3ca81 100644 --- a/agb-image-converter/Cargo.toml +++ b/agb-image-converter/Cargo.toml @@ -11,7 +11,7 @@ repository = "https://github.com/agbrs/agb" proc-macro = true [dependencies] -image = { version = "0.24", default-features = false, features = [ +image = { version = "0.25", default-features = false, features = [ "png", "bmp", ] } diff --git a/book/games/pong/Cargo.lock b/book/games/pong/Cargo.lock index 45637baac..090561559 100644 --- a/book/games/pong/Cargo.lock +++ b/book/games/pong/Cargo.lock @@ -43,7 +43,7 @@ version = "0.19.1" dependencies = [ "asefile", "fontdue", - "image", + "image 0.25.0", "proc-macro2", "quote", "syn", @@ -101,7 +101,7 @@ dependencies = [ "bitflags 1.3.2", "byteorder", "flate2", - "image", + "image 0.24.9", "log", "nohash", ] @@ -247,6 +247,17 @@ dependencies = [ "byteorder", "color_quant", "num-traits", +] + +[[package]] +name = "image" +version = "0.25.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9b4f005360d32e9325029b38ba47ebd7a56f3316df09249368939562d518645" +dependencies = [ + "bytemuck", + "byteorder", + "num-traits", "png", ] diff --git a/emulator/Cargo.lock b/emulator/Cargo.lock index 4e22d1188..1d6384e2c 100644 --- a/emulator/Cargo.lock +++ b/emulator/Cargo.lock @@ -214,12 +214,6 @@ dependencies = [ "cc", ] -[[package]] -name = "color_quant" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" - [[package]] name = "colorchoice" version = "1.0.0" @@ -299,13 +293,12 @@ dependencies = [ [[package]] name = "image" -version = "0.24.9" +version = "0.25.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5690139d2f55868e080017335e4b94cb7414274c74f1669c84fb5feba2c9f69d" +checksum = "a9b4f005360d32e9325029b38ba47ebd7a56f3316df09249368939562d518645" dependencies = [ "bytemuck", "byteorder", - "color_quant", "num-traits", "png", ] diff --git a/emulator/test-runner/Cargo.toml b/emulator/test-runner/Cargo.toml index e86d5aec9..5a33b9f1f 100644 --- a/emulator/test-runner/Cargo.toml +++ b/emulator/test-runner/Cargo.toml @@ -9,5 +9,5 @@ edition = "2021" mgba = { path = "../mgba" } clap = { version = "4", features = ["derive"] } anyhow = "1" -image = { version = "0.24", default-features = false, features = [ "png", "bmp" ] } +image = { version = "0.25", default-features = false, features = [ "png", "bmp" ] } agb-gbafix = { path = "../../agb-gbafix" } \ No newline at end of file diff --git a/examples/amplitude/Cargo.lock b/examples/amplitude/Cargo.lock index af2dda252..85f51ce2a 100644 --- a/examples/amplitude/Cargo.lock +++ b/examples/amplitude/Cargo.lock @@ -43,7 +43,7 @@ version = "0.19.1" dependencies = [ "asefile", "fontdue", - "image", + "image 0.25.0", "proc-macro2", "quote", "syn", @@ -108,7 +108,7 @@ dependencies = [ "bitflags 1.3.2", "byteorder", "flate2", - "image", + "image 0.24.9", "log", "nohash", ] @@ -254,6 +254,17 @@ dependencies = [ "byteorder", "color_quant", "num-traits", +] + +[[package]] +name = "image" +version = "0.25.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9b4f005360d32e9325029b38ba47ebd7a56f3316df09249368939562d518645" +dependencies = [ + "bytemuck", + "byteorder", + "num-traits", "png", ] diff --git a/examples/combo/Cargo.lock b/examples/combo/Cargo.lock index 65424a3f9..1b860548a 100644 --- a/examples/combo/Cargo.lock +++ b/examples/combo/Cargo.lock @@ -49,7 +49,7 @@ version = "0.19.1" dependencies = [ "asefile", "fontdue", - "image", + "image 0.25.0", "proc-macro2", "quote", "syn 2.0.52", @@ -154,7 +154,7 @@ dependencies = [ "bitflags 1.3.2", "byteorder", "flate2", - "image", + "image 0.24.9", "log", "nohash", ] @@ -393,6 +393,17 @@ dependencies = [ "byteorder", "color_quant", "num-traits", +] + +[[package]] +name = "image" +version = "0.25.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9b4f005360d32e9325029b38ba47ebd7a56f3316df09249368939562d518645" +dependencies = [ + "bytemuck", + "byteorder", + "num-traits", "png", ] diff --git a/examples/hyperspace-roll/Cargo.lock b/examples/hyperspace-roll/Cargo.lock index 3edf7cb77..4639a6758 100644 --- a/examples/hyperspace-roll/Cargo.lock +++ b/examples/hyperspace-roll/Cargo.lock @@ -43,7 +43,7 @@ version = "0.19.1" dependencies = [ "asefile", "fontdue", - "image", + "image 0.25.0", "proc-macro2", "quote", "syn", @@ -101,7 +101,7 @@ dependencies = [ "bitflags 1.3.2", "byteorder", "flate2", - "image", + "image 0.24.9", "log", "nohash", ] @@ -254,6 +254,17 @@ dependencies = [ "byteorder", "color_quant", "num-traits", +] + +[[package]] +name = "image" +version = "0.25.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9b4f005360d32e9325029b38ba47ebd7a56f3316df09249368939562d518645" +dependencies = [ + "bytemuck", + "byteorder", + "num-traits", "png", ] diff --git a/examples/the-dungeon-puzzlers-lament/Cargo.lock b/examples/the-dungeon-puzzlers-lament/Cargo.lock index 25c392e7c..58f8a416d 100644 --- a/examples/the-dungeon-puzzlers-lament/Cargo.lock +++ b/examples/the-dungeon-puzzlers-lament/Cargo.lock @@ -49,7 +49,7 @@ version = "0.19.1" dependencies = [ "asefile", "fontdue", - "image", + "image 0.25.0", "proc-macro2", "quote", "syn 2.0.52", @@ -147,7 +147,7 @@ dependencies = [ "bitflags 1.3.2", "byteorder", "flate2", - "image", + "image 0.24.9", "log", "nohash", ] @@ -349,6 +349,17 @@ dependencies = [ "byteorder", "color_quant", "num-traits", +] + +[[package]] +name = "image" +version = "0.25.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9b4f005360d32e9325029b38ba47ebd7a56f3316df09249368939562d518645" +dependencies = [ + "bytemuck", + "byteorder", + "num-traits", "png", ] diff --git a/examples/the-hat-chooses-the-wizard/Cargo.lock b/examples/the-hat-chooses-the-wizard/Cargo.lock index 41ca173ad..26e006998 100644 --- a/examples/the-hat-chooses-the-wizard/Cargo.lock +++ b/examples/the-hat-chooses-the-wizard/Cargo.lock @@ -43,7 +43,7 @@ version = "0.19.1" dependencies = [ "asefile", "fontdue", - "image", + "image 0.25.0", "proc-macro2", "quote", "syn", @@ -101,7 +101,7 @@ dependencies = [ "bitflags 1.3.2", "byteorder", "flate2", - "image", + "image 0.24.9", "log", "nohash", ] @@ -247,6 +247,17 @@ dependencies = [ "byteorder", "color_quant", "num-traits", +] + +[[package]] +name = "image" +version = "0.25.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9b4f005360d32e9325029b38ba47ebd7a56f3316df09249368939562d518645" +dependencies = [ + "bytemuck", + "byteorder", + "num-traits", "png", ] diff --git a/examples/the-purple-night/Cargo.lock b/examples/the-purple-night/Cargo.lock index fb2e572a7..1e81cdf3b 100644 --- a/examples/the-purple-night/Cargo.lock +++ b/examples/the-purple-night/Cargo.lock @@ -49,7 +49,7 @@ version = "0.19.1" dependencies = [ "asefile", "fontdue", - "image", + "image 0.25.0", "proc-macro2", "quote", "syn", @@ -107,7 +107,7 @@ dependencies = [ "bitflags 1.3.2", "byteorder", "flate2", - "image", + "image 0.24.9", "log", "nohash", ] @@ -271,6 +271,17 @@ dependencies = [ "byteorder", "color_quant", "num-traits", +] + +[[package]] +name = "image" +version = "0.25.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9b4f005360d32e9325029b38ba47ebd7a56f3316df09249368939562d518645" +dependencies = [ + "bytemuck", + "byteorder", + "num-traits", "png", ]