From 8875e7d18ed170d538f2d285b8d05b228143f3ce Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Apr 2024 19:37:19 +0000 Subject: [PATCH] Bump image from 0.24.9 to 0.25.1 Bumps [image](https://github.com/image-rs/image) from 0.24.9 to 0.25.1. - [Changelog](https://github.com/image-rs/image/blob/main/CHANGES.md) - [Commits](https://github.com/image-rs/image/compare/v0.24.9...v0.25.1) --- updated-dependencies: - dependency-name: image dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 16 ++++++++++++++-- Cargo.toml | 2 +- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7a9f774..ad594ce 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -207,6 +207,18 @@ dependencies = [ "png", ] +[[package]] +name = "image" +version = "0.25.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fd54d660e773627692c524beaad361aca785a4f9f5730ce91f42aabe5bce3d11" +dependencies = [ + "bytemuck", + "byteorder", + "num-traits", + "png", +] + [[package]] name = "inline_tweak" version = "1.1.1" @@ -250,7 +262,7 @@ dependencies = [ "bumpalo", "fontdue", "glam", - "image", + "image 0.24.9", "macroquad_macro", "miniquad", "quad-rand", @@ -425,7 +437,7 @@ dependencies = [ "cvars", "cvars-console-macroquad", "fnv", - "image", + "image 0.25.1", "inline_tweak", "macroquad", "rand", diff --git a/Cargo.toml b/Cargo.toml index f1437b8..6ab0358 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -58,7 +58,7 @@ vek = "0.16.1" [dependencies.image] # Dependency of macroquad with added "bmp" feature so we can load RecWar's original assets. # Must be the same version as macroquad, even if that means it's outdated. -version = "0.24.9" +version = "0.25.1" default-features = false features = ["png", "tga", "bmp"]