-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
70506d6
commit 0c128c0
Showing
6 changed files
with
16 additions
and
16 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "bevy_matchbox" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
authors = [ | ||
"Johan Helsing <[email protected]>", | ||
"Garry O'Donnell <[email protected]", | ||
|
@@ -30,11 +30,11 @@ signaling = [ | |
|
||
[dependencies] | ||
bevy = { version = "0.13", default-features = false } | ||
matchbox_socket = { version = "0.8", path = "../matchbox_socket" } | ||
matchbox_socket = { version = "0.9", path = "../matchbox_socket" } | ||
cfg-if = "1.0" | ||
|
||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies] | ||
matchbox_signaling = { version = "0.8", path = "../matchbox_signaling", optional = true } | ||
matchbox_signaling = { version = "0.9", path = "../matchbox_signaling", optional = true } | ||
async-compat = { version = "0.2", optional = true } | ||
|
||
[dev-dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "matchbox_protocol" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
authors = [ | ||
"Johan Helsing <[email protected]>", | ||
"Spencer C. Imbleau <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "matchbox_server" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
authors = ["Johan Helsing <[email protected]>"] | ||
edition = "2021" | ||
description = "A signaling server for WebRTC peer-to-peer full-mesh networking" | ||
|
@@ -17,8 +17,8 @@ homepage = "https://github.com/johanhelsing/matchbox" | |
readme = "../README.md" | ||
|
||
[dependencies] | ||
matchbox_signaling = { version = "0.8", path = "../matchbox_signaling" } | ||
matchbox_protocol = { version = "0.8", path = "../matchbox_protocol", features = [ | ||
matchbox_signaling = { version = "0.9", path = "../matchbox_signaling" } | ||
matchbox_protocol = { version = "0.9", path = "../matchbox_protocol", features = [ | ||
"json", | ||
] } | ||
async-trait = "0.1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "matchbox_signaling" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
authors = [ | ||
"Johan Helsing <[email protected]>", | ||
"Spencer C. Imbleau <[email protected]>", | ||
|
@@ -18,7 +18,7 @@ categories = [ | |
repository = "https://github.com/johanhelsing/matchbox" | ||
|
||
[dependencies] | ||
matchbox_protocol = { version = "0.8", path = "../matchbox_protocol", features = [ | ||
matchbox_protocol = { version = "0.9", path = "../matchbox_protocol", features = [ | ||
"json", | ||
] } | ||
axum = { version = "0.6", features = ["ws"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "matchbox_socket" | ||
version = "0.8.1" | ||
version = "0.9.0" | ||
authors = ["Johan Helsing <[email protected]>"] | ||
description = "Painless WebRTC peer-to-peer full-mesh networking socket" | ||
edition = "2021" | ||
|
@@ -18,7 +18,7 @@ repository = "https://github.com/johanhelsing/matchbox" | |
ggrs = ["dep:bincode", "dep:ggrs"] | ||
|
||
[dependencies] | ||
matchbox_protocol = { version = "0.8", path = "../matchbox_protocol", default-features = false } | ||
matchbox_protocol = { version = "0.9", path = "../matchbox_protocol", default-features = false } | ||
futures-channel = { version = "0.3", default-features = false, features = [ | ||
"sink", | ||
] } | ||
|