mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 15:14:50 +00:00
Add the serde feature to bitflags for bevy_render. (#11966)
# Objective Fixes #11964. ## Solution Adds the `serde` feature to `bitflags` for `bevy_render`. This makes `bevy_render` compile correctly when used alone. --- ## Changelog - Fixed an issue where depending on `bevy_render` alone would fail to compile.
This commit is contained in:
parent
a1ef7be4ac
commit
2ae50874d3
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ wgpu = { version = "0.19.1", default-features = false, features = [
|
|||
] }
|
||||
naga = { version = "0.19", features = ["wgsl-in"] }
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
bitflags = "2.3"
|
||||
bitflags = { version = "2.3", features = ["serde"] }
|
||||
bytemuck = { version = "1.5", features = ["derive"] }
|
||||
downcast-rs = "1.2.0"
|
||||
thread_local = "1.1"
|
||||
|
|
Loading…
Reference in a new issue