Fix bevy_render's image dependency version (#14505)

# Objective

- `bevy_render` depends on `image 0.25` but uses `image::ImageReader`
which was added only in `image 0.25.2`
- users that have `image 0.25` in their `Cargo.lock` and update to the
latest `bevy_render` may thus get a compilation due to this (at least I
did)

## Solution

- Properly set the correct minimum version of `image` that `bevy_render`
depends on.
This commit is contained in:
Giacomo Stevanato 2024-07-28 17:48:51 +02:00 committed by François
parent 27cafdae9b
commit 587cffdcde
No known key found for this signature in database

View file

@ -62,7 +62,7 @@ bevy_utils = { path = "../bevy_utils", version = "0.14.0" }
bevy_tasks = { path = "../bevy_tasks", version = "0.14.0" }
# rendering
image = { version = "0.25", default-features = false }
image = { version = "0.25.2", default-features = false }
# misc
codespan-reporting = "0.11.0"