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:
parent
27cafdae9b
commit
587cffdcde
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user