Commit e03ae86
authored
# 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
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
29 | 29 | | |
30 | 30 | | |
31 | 31 | | |
32 | | - | |
| 32 | + | |
33 | 33 | | |
34 | 34 | | |
35 | 35 | | |
| |||
0 commit comments