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
This commit is contained in:
Benjamin Brienen 2025-05-26 21:38:28 +02:00 committed by François Mockers
parent 1126949807
commit 6fc2e919b8
4 changed files with 4 additions and 4 deletions

View File

@ -540,7 +540,7 @@ rand_chacha = "0.3.1"
ron = "0.8.0" ron = "0.8.0"
flate2 = "1.0" flate2 = "1.0"
serde = { version = "1", features = ["derive"] } serde = { version = "1", features = ["derive"] }
serde_json = "1" serde_json = "1.0.140"
bytemuck = "1.7" bytemuck = "1.7"
bevy_render = { path = "crates/bevy_render", version = "0.16.0", default-features = false } bevy_render = { path = "crates/bevy_render", version = "0.16.0", default-features = false }
# The following explicit dependencies are needed for proc macros to work inside of examples as they are part of the bevy crate itself. # The following explicit dependencies are needed for proc macros to work inside of examples as they are part of the bevy crate itself.

View File

@ -62,7 +62,7 @@ fixedbitset = "0.5"
itertools = "0.14" itertools = "0.14"
percent-encoding = "2.1" percent-encoding = "2.1"
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_json = "1" serde_json = "1.0.140"
smallvec = "1.11" smallvec = "1.11"
tracing = { version = "0.1", default-features = false, features = ["std"] } tracing = { version = "0.1", default-features = false, features = ["std"] }

View File

@ -123,7 +123,7 @@ wgpu-types = { version = "24", features = [
ron = "0.8.0" ron = "0.8.0"
rmp-serde = "1.1" rmp-serde = "1.1"
bincode = { version = "2.0", features = ["serde"] } bincode = { version = "2.0", features = ["serde"] }
serde_json = "1.0" serde_json = "1.0.140"
serde = { version = "1", features = ["derive"] } serde = { version = "1", features = ["derive"] }
static_assertions = "1.1.0" static_assertions = "1.1.0"

View File

@ -31,7 +31,7 @@ bevy_platform = { path = "../bevy_platform", version = "0.16.0", default-feature
anyhow = "1" anyhow = "1"
hyper = { version = "1", features = ["server", "http1"] } hyper = { version = "1", features = ["server", "http1"] }
serde = { version = "1", features = ["derive"] } serde = { version = "1", features = ["derive"] }
serde_json = { version = "1" } serde_json = "1.0.140"
http-body-util = "0.1" http-body-util = "0.1"
async-channel = "2" async-channel = "2"