Skip to content

Commit 6fc2e91

Browse files
BenjaminBrienenmockersf
authored andcommitted
Make sure that serde_json::Map::into_values exists (#19229)
# Objective cargo update was required to build because into_values was added in a patch version ## Solution Depend on the new patch ## Testing Builds locally now
1 parent 1126949 commit 6fc2e91

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,7 @@ rand_chacha = "0.3.1"
540540
ron = "0.8.0"
541541
flate2 = "1.0"
542542
serde = { version = "1", features = ["derive"] }
543-
serde_json = "1"
543+
serde_json = "1.0.140"
544544
bytemuck = "1.7"
545545
bevy_render = { path = "crates/bevy_render", version = "0.16.0", default-features = false }
546546
# The following explicit dependencies are needed for proc macros to work inside of examples as they are part of the bevy crate itself.

crates/bevy_gltf/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ fixedbitset = "0.5"
6262
itertools = "0.14"
6363
percent-encoding = "2.1"
6464
serde = { version = "1.0", features = ["derive"] }
65-
serde_json = "1"
65+
serde_json = "1.0.140"
6666
smallvec = "1.11"
6767
tracing = { version = "0.1", default-features = false, features = ["std"] }
6868

crates/bevy_reflect/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ wgpu-types = { version = "24", features = [
123123
ron = "0.8.0"
124124
rmp-serde = "1.1"
125125
bincode = { version = "2.0", features = ["serde"] }
126-
serde_json = "1.0"
126+
serde_json = "1.0.140"
127127
serde = { version = "1", features = ["derive"] }
128128
static_assertions = "1.1.0"
129129

crates/bevy_remote/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-feature
3131
anyhow = "1"
3232
hyper = { version = "1", features = ["server", "http1"] }
3333
serde = { version = "1", features = ["derive"] }
34-
serde_json = { version = "1" }
34+
serde_json = "1.0.140"
3535
http-body-util = "0.1"
3636
async-channel = "2"
3737

0 commit comments

Comments
 (0)