diff --git a/Cargo.lock b/Cargo.lock index 9df4699e..5c949971 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -867,8 +867,9 @@ dependencies = [ [[package]] name = "bevy_ggrs" -version = "0.15.0" -source = "git+https://github.com/Jondolf/bevy_ggrs?branch=bevy-0.14#f22a0ac8aa20338386b3afe9ac5ba1c3152cdc97" +version = "0.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0aea4c15bf95ccd9fe6a4acbc5f598a38e0416b33355f9f57f922dcaf6e4ab2" dependencies = [ "bevy", "bytemuck", @@ -2539,7 +2540,8 @@ dependencies = [ [[package]] name = "ggrs" version = "0.10.2" -source = "git+https://github.com/gschup/ggrs#d7e4871b6dfad659f043e951997bfc617809f532" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "16959a36a15a12187f6a90ad822273695b8ed190fece8f6a5d02d4550646a53e" dependencies = [ "bincode", "bitfield-rle", diff --git a/examples/bevy_ggrs/Cargo.toml b/examples/bevy_ggrs/Cargo.toml index ec0a38f9..db317069 100644 --- a/examples/bevy_ggrs/Cargo.toml +++ b/examples/bevy_ggrs/Cargo.toml @@ -15,9 +15,7 @@ web-sys = { version = "0.3", features = [ ] } serde_qs = "0.13" wasm-bindgen = "0.2" -bevy_ggrs = { git = "https://github.com/Jondolf/bevy_ggrs", branch = "bevy-0.14", features = [ - "wasm-bindgen", -] } +bevy_ggrs = { version = "0.16", features = ["wasm-bindgen"] } [dependencies] bevy_matchbox = { path = "../../bevy_matchbox", features = ["ggrs"] } @@ -38,7 +36,7 @@ bevy = { version = "0.14", default-features = false, features = [ # gh actions runners don't like wayland "x11", ] } -bevy_ggrs = { git = "https://github.com/Jondolf/bevy_ggrs", branch = "bevy-0.14" } +bevy_ggrs = "0.16" bytemuck = { version = "1.7", features = ["derive"] } clap = { version = "4.3", features = ["derive"] } serde = "1.0" diff --git a/matchbox_socket/Cargo.toml b/matchbox_socket/Cargo.toml index 5591cf89..f7719731 100644 --- a/matchbox_socket/Cargo.toml +++ b/matchbox_socket/Cargo.toml @@ -41,11 +41,11 @@ once_cell = { version = "1.17", default-features = false, features = [ ] } derive_more = "0.99" -ggrs = { git = "https://github.com/gschup/ggrs", default-features = false, optional = true } +ggrs = { version = "0.10", default-features = false, optional = true } bincode = { version = "1.3", default-features = false, optional = true } [target.'cfg(target_arch = "wasm32")'.dependencies] -ggrs = { git = "https://github.com/gschup/ggrs", default-features = false, optional = true, features = [ +ggrs = { version = "0.10", default-features = false, optional = true, features = [ "wasm-bindgen", ] } ws_stream_wasm = { version = "0.7", default-features = false }