Patch Bevy crates to unify version

This commit is contained in:
Elias Stepanik 2025-06-13 01:16:30 +02:00
parent 1152799b4e
commit d56d28c966
2 changed files with 20 additions and 1 deletions

View File

@ -1,3 +1,22 @@
[workspace]
resolver = "2"
members = ["client"]
[patch.crates-io]
bevy = { git = "https://github.com/bevyengine/bevy.git", tag = "v0.16.1" }
bevy_app = { git = "https://github.com/bevyengine/bevy.git", tag = "v0.16.1" }
bevy_ecs = { git = "https://github.com/bevyengine/bevy.git", tag = "v0.16.1" }
bevy_log = { git = "https://github.com/bevyengine/bevy.git", tag = "v0.16.1" }
bevy_math = { git = "https://github.com/bevyengine/bevy.git", tag = "v0.16.1" }
bevy_reflect = { git = "https://github.com/bevyengine/bevy.git", tag = "v0.16.1" }
bevy_tasks = { git = "https://github.com/bevyengine/bevy.git", tag = "v0.16.1" }
bevy_transform = { git = "https://github.com/bevyengine/bevy.git", tag = "v0.16.1" }
bevy_utils = { git = "https://github.com/bevyengine/bevy.git", tag = "v0.16.1" }
bevy_platform = { git = "https://github.com/bevyengine/bevy.git", tag = "v0.16.1" }
bevy_color = { git = "https://github.com/bevyengine/bevy.git", tag = "v0.16.1" }
bevy_gizmos = { git = "https://github.com/bevyengine/bevy.git", tag = "v0.16.1" }
bevy_render = { git = "https://github.com/bevyengine/bevy.git", tag = "v0.16.1" }
bevy_input = { git = "https://github.com/bevyengine/bevy.git", tag = "v0.16.1" }
bevy_time = { git = "https://github.com/bevyengine/bevy.git", tag = "v0.16.1" }
bevy_window = { git = "https://github.com/bevyengine/bevy.git", tag = "v0.16.1" }

View File

@ -13,7 +13,7 @@ bevy = { version = "0.16.1", features = ["jpeg", "trace_tracy", "trace_tracy_mem
rand = "0.8.5"
serde = { version = "1.0", features = ["derive"] }
toml = "0.8"
big_space = "0.9.1"
big_space = { git = "https://github.com/aevyrie/big_space.git", rev = "5345af11d4ce138bacf5a9a3ab53d1c3b3b103c7" }
noise = "0.9.0"
itertools = "0.13.0"
bitvec = "1.0.1"