Skip to content

Commit e03ae86

Browse files
authored
Upgrade ron version from 0.8 to 0.12 in bevy_transform (#23918)
# Objective All other crates in the Bevy workspace already depend on `ron = "0.12"`, but `bevy_transform` was still pinned to the outdated `ron = "0.8"`. This brings it in line with the rest of the workspace and avoids pulling in two different versions of `ron`. ## Solution - Updated `crates/bevy_transform/Cargo.toml` to use `ron = "0.12"`. All crates that depend on `ron` in this workspace now use the same version: | Crate | Version | |---|---| | `bevy_animation` | `0.12` | | `bevy_asset` | `0.12` | | `bevy_dev_tools` | `0.12` | | `bevy_reflect` | `0.12` | | `bevy_transform` | `0.12` ← this PR | | `bevy_world_serialization` | `0.12` | ## Testing - `cargo check` passes with the updated dependency. - No behavioral changes — this is a pure dependency version bump. - Reviewers can verify by running `cargo test -p bevy_transform`. ---
1 parent 631610c commit e03ae86

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

crates/bevy_transform/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ bevy_math = { path = "../bevy_math", version = "0.19.0-dev", default-features =
2929
"approx",
3030
] }
3131
approx = "0.5.1"
32-
ron = "0.8"
32+
ron = "0.12"
3333

3434
[features]
3535
# Turning off default features leaves you with a barebones

0 commit comments

Comments
 (0)