diff --git a/Cargo.lock b/Cargo.lock index 10dd83e3..355be219 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -865,7 +865,7 @@ dependencies = [ [[package]] name = "bevy_ggrs_example" -version = "0.6.0" +version = "0.7.0" dependencies = [ "bevy", "bevy_ggrs", @@ -1024,7 +1024,7 @@ dependencies = [ [[package]] name = "bevy_matchbox" -version = "0.6.0" +version = "0.7.0" dependencies = [ "bevy", "cfg-if 1.0.0", @@ -3065,7 +3065,7 @@ dependencies = [ [[package]] name = "matchbox_protocol" -version = "0.6.0" +version = "0.7.0" dependencies = [ "cfg-if 1.0.0", "derive_more", @@ -3076,7 +3076,7 @@ dependencies = [ [[package]] name = "matchbox_server" -version = "0.6.0" +version = "0.7.0" dependencies = [ "async-trait", "axum", @@ -3098,7 +3098,7 @@ dependencies = [ [[package]] name = "matchbox_signaling" -version = "0.6.0" +version = "0.7.0" dependencies = [ "async-trait", "axum", @@ -3120,7 +3120,7 @@ dependencies = [ [[package]] name = "matchbox_socket" -version = "0.6.1" +version = "0.7.0" dependencies = [ "async-compat", "async-trait", diff --git a/README.md b/README.md index 17842c2d..07927eda 100644 --- a/README.md +++ b/README.md @@ -22,9 +22,9 @@ The Matchbox project contains: - [bevy_matchbox](https://github.com/johanhelsing/matchbox/tree/main/bevy_matchbox): A `matchbox_socket` integration for the [Bevy](https://bevyengine.org/) game engine | bevy | bevy_matchbox | |-------|---------------| - | < 0.9 | Unsupported | + | 0.11 | 0.7, main | | 0.10 | 0.6 | - | 0.11 | 0.7 | + | < 0.9 | Unsupported | ## Examples diff --git a/bevy_matchbox/Cargo.toml b/bevy_matchbox/Cargo.toml index 79998be7..c97dcf01 100644 --- a/bevy_matchbox/Cargo.toml +++ b/bevy_matchbox/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_matchbox" -version = "0.6.0" +version = "0.7.0" authors = [ "Johan Helsing ", "Garry O'Donnell "] description = "A demo game where two web browser can connect and move boxes around" edition = "2021" diff --git a/matchbox_protocol/Cargo.toml b/matchbox_protocol/Cargo.toml index 7d7f6061..d194e96d 100644 --- a/matchbox_protocol/Cargo.toml +++ b/matchbox_protocol/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "matchbox_protocol" -version = "0.6.0" +version = "0.7.0" authors = [ "Johan Helsing ", "Spencer C. Imbleau ", diff --git a/matchbox_server/Cargo.toml b/matchbox_server/Cargo.toml index d9b38ab0..1c393eb4 100644 --- a/matchbox_server/Cargo.toml +++ b/matchbox_server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "matchbox_server" -version = "0.6.0" +version = "0.7.0" authors = ["Johan Helsing "] edition = "2021" description = "A signaling server for WebRTC peer-to-peer full-mesh networking" @@ -17,8 +17,10 @@ homepage = "https://github.com/johanhelsing/matchbox" readme = "../README.md" [dependencies] -matchbox_signaling = { path = "../matchbox_signaling" } -matchbox_protocol = { path = "../matchbox_protocol", features = ["json"] } +matchbox_signaling = { version = "0.7", path = "../matchbox_signaling" } +matchbox_protocol = { version = "0.7", path = "../matchbox_protocol", features = [ + "json", +] } async-trait = "0.1" axum = { version = "0.6", features = ["ws"] } tracing = { version = "0.1", features = ["log"] } diff --git a/matchbox_signaling/Cargo.toml b/matchbox_signaling/Cargo.toml index 66587c18..d9de1262 100644 --- a/matchbox_signaling/Cargo.toml +++ b/matchbox_signaling/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "matchbox_signaling" -version = "0.6.0" +version = "0.7.0" authors = [ "Johan Helsing ", "Spencer C. Imbleau ", @@ -18,7 +18,9 @@ categories = [ repository = "https://github.com/johanhelsing/matchbox" [dependencies] -matchbox_protocol = { path = "../matchbox_protocol", features = ["json"] } +matchbox_protocol = { version = "0.7", path = "../matchbox_protocol", features = [ + "json", +] } axum = { version = "0.6", features = ["ws"] } hyper = { version = "0.14", features = ["server"] } tracing = { version = "0.1", features = ["log"] } diff --git a/matchbox_socket/Cargo.toml b/matchbox_socket/Cargo.toml index 0f5fd02c..b916109c 100644 --- a/matchbox_socket/Cargo.toml +++ b/matchbox_socket/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "matchbox_socket" -version = "0.6.1" +version = "0.7.0" authors = ["Johan Helsing "] 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 = { path = "../matchbox_protocol", default-features = false } +matchbox_protocol = { version = "0.7", path = "../matchbox_protocol", default-features = false } futures-channel = { version = "0.3", default-features = false, features = [ "sink", ] }