From d56d28c9664a85b9e000ec2c2960b3e0749c4c8e Mon Sep 17 00:00:00 2001 From: Elias Stepanik <40958815+eliasstepanik@users.noreply.github.com> Date: Fri, 13 Jun 2025 01:16:30 +0200 Subject: [PATCH] Patch Bevy crates to unify version --- Cargo.toml | 19 +++++++++++++++++++ client/Cargo.toml | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 5b40dd7..aa32a5c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" } + diff --git a/client/Cargo.toml b/client/Cargo.toml index 47f6bf9..57e4c92 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -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"