Skip to content

Commit 587cffd

Browse files
SkiFire13mockersf
authored andcommitted
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.
1 parent 27cafda commit 587cffd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/bevy_render/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ bevy_utils = { path = "../bevy_utils", version = "0.14.0" }
6262
bevy_tasks = { path = "../bevy_tasks", version = "0.14.0" }
6363

6464
# rendering
65-
image = { version = "0.25", default-features = false }
65+
image = { version = "0.25.2", default-features = false }
6666

6767
# misc
6868
codespan-reporting = "0.11.0"

0 commit comments

Comments
 (0)