Skip to content

Commit

Permalink
refactor!: Use crates.io version of ggrs
Browse files Browse the repository at this point in the history
  • Loading branch information
johanhelsing committed Sep 13, 2021
1 parent 97b1e11 commit 781116c
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 39 deletions.
63 changes: 32 additions & 31 deletions Cargo.lock

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

7 changes: 2 additions & 5 deletions matchbox_demo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,19 +34,16 @@ serde_qs = "0.8.4"
wasm-bindgen = "0.2"

[dependencies]
matchbox_socket = { path = "../matchbox_socket", features = ["ggrs-socket"] }
bevy = { git = "https://github.com/bevyengine/bevy", branch = "main", default-features = false }
ggrs = "0.5"
bevy_ggrs = { git = "https://github.com/gschup/bevy_ggrs", branch = "main" }
bevy_webgl2 = { git = "https://github.com/mrk-its/bevy_webgl2", branch = "master", optional = true }
clap = "3.0.0-beta.2"
serde = "1.0"
winit = {version = "0.25.0"}
log = "0.4"

matchbox_socket = { path = "../matchbox_socket", features = ["ggrs-socket"] }

# TODO: 0.4 is missing required patches, and 0.5 is not yet released.
ggrs = { git = "https://github.com/gschup/ggrs", branch = "main" }

# [profile.dev]
# opt-level = 1

Expand Down
4 changes: 1 addition & 3 deletions matchbox_socket/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,5 @@ web-sys = { version = "0.3.22", default-features = false, features = [
log = { version = "0.4", default-features = false }

# ggrs-socket
# ggrs = { version = "0.5", default-features = false, optional = true }
# TODO: 0.4 doesn't is missing required patches, and 0.5 is not yet released.
ggrs = { git = "https://github.com/gschup/ggrs", branch = "main", default-features = false, optional = true }
ggrs = { version = "0.5", default-features = false, optional = true }
bincode = { version = "1.3", default-features = false, optional = true }

0 comments on commit 781116c

Please sign in to comment.