Skip to content

Commit

Permalink
Update to bevy_ggrs 0.16
Browse files Browse the repository at this point in the history
  • Loading branch information
Jondolf committed Jul 14, 2024
1 parent 764ec93 commit 8f36e03
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 5 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 2 additions & 4 deletions examples/bevy_ggrs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand All @@ -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"
4 changes: 2 additions & 2 deletions matchbox_socket/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down

0 comments on commit 8f36e03

Please sign in to comment.