From ce58cc6a6801f4c4944738a84ae3f2e4e4d58840 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Mar 2024 12:29:50 +0000 Subject: [PATCH] Update image requirement from 0.24 to 0.25 Updates the requirements on [image](https://github.com/image-rs/image) to permit the latest version. - [Changelog](https://github.com/image-rs/image/blob/main/CHANGES.md) - [Commits](https://github.com/image-rs/image/compare/v0.24.0...v0.25.0) --- updated-dependencies: - dependency-name: image dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- examples/Cargo.toml | 2 +- rend3-gltf/Cargo.toml | 2 +- rend3-test/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 3c4fbbce..8abfe805 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -36,7 +36,7 @@ log = "0.4" # Inline string indoc = "2" # Importing images -image = { version = "0.24", default-features = false, features = [ +image = { version = "0.25", default-features = false, features = [ "png", "jpeg", "tiff", diff --git a/rend3-gltf/Cargo.toml b/rend3-gltf/Cargo.toml index a3ca254f..65444541 100644 --- a/rend3-gltf/Cargo.toml +++ b/rend3-gltf/Cargo.toml @@ -22,7 +22,7 @@ ddsfile = { version = "0.5", optional = true } float-ord = "0.3.2" glam = "0.25" gltf = { version = "1.0", default-features = false, features = ["KHR_lights_punctual", "KHR_texture_transform", "KHR_materials_unlit", "extras", "names", "utils"] } -image = { version = "0.24", default-features = false } +image = { version = "0.25", default-features = false } ktx2 = { version = "0.3", optional = true } log = "0.4" profiling = {version = "1", default-features = false } diff --git a/rend3-test/Cargo.toml b/rend3-test/Cargo.toml index 031e0fd3..792b6f93 100644 --- a/rend3-test/Cargo.toml +++ b/rend3-test/Cargo.toml @@ -18,7 +18,7 @@ anyhow = "1" env_logger = "0.11" flume = { version = "0.11", features = ["spin"] } glam = "0.25" -image = { version = "0.24", default-features = false, features = ["png"] } +image = { version = "0.25", default-features = false, features = ["png"] } rend3 = { path = "../rend3" } rend3-routine = { path = "../rend3-routine" } wgpu = "0.19.0"