From 1851ecab381b92f2646d3b235a8781181a92de70 Mon Sep 17 00:00:00 2001 From: tsar-boomba Date: Sat, 3 Jan 2026 16:49:28 -0800 Subject: [PATCH 1/3] bevy 0.18 rc 2 --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 74228d5..f7ad0e1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,10 +16,10 @@ categories = ["network-programming", "game-development"] wasm-bindgen = ["instant/wasm-bindgen", "ggrs/wasm-bindgen"] [dependencies] -bevy = { version = "0.17", default-features = false, features = ["bevy_log"] } +bevy = { version = "0.18.0-rc.2", default-features = false, features = ["bevy_log"] } instant = { version = "0.1", optional = true } log = "0.4" -ggrs = { version= "0.11.1", features=["sync-send"]} +ggrs = { version= "0.11.1", features = ["sync-send"] } #ggrs = { git = "https://github.com/gschup/ggrs", features = ["sync-send"] } seahash = "4.1" disqualified = "1.0.0" From 7e4a05f13db35f9a46a8c6e2cc923d814da161de Mon Sep 17 00:00:00 2001 From: tsar-boomba Date: Tue, 13 Jan 2026 16:55:31 -0500 Subject: [PATCH 2/3] update to bevy 0.18.0 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index f7ad0e1..0f3ba15 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ categories = ["network-programming", "game-development"] wasm-bindgen = ["instant/wasm-bindgen", "ggrs/wasm-bindgen"] [dependencies] -bevy = { version = "0.18.0-rc.2", default-features = false, features = ["bevy_log"] } +bevy = { version = "0.18.0", default-features = false, features = ["bevy_log"] } instant = { version = "0.1", optional = true } log = "0.4" ggrs = { version= "0.11.1", features = ["sync-send"] } From cf6974ecbb5ee072a32402a1ccf659937246a165 Mon Sep 17 00:00:00 2001 From: tsar-boomba Date: Thu, 15 Jan 2026 10:12:50 -0500 Subject: [PATCH 3/3] update bevy to 0.18.0 in dev-dependencies --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 0f3ba15..dc51a43 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,7 +26,7 @@ disqualified = "1.0.0" serde = { version = "1", default-features = false } [dev-dependencies] -bevy = { version = "0.17", default-features = true } +bevy = { version = "0.18", default-features = true } clap = { version = "4.4", features = ["derive"] } rand = "0.9" rand_xoshiro = "0.7"