diff --git a/Cargo.lock b/Cargo.lock index 562efe48..eb616eee 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -949,7 +949,7 @@ dependencies = [ [[package]] name = "bevy_matchbox" -version = "0.7.0" +version = "0.8.0" dependencies = [ "async-compat", "bevy", @@ -2856,7 +2856,7 @@ dependencies = [ [[package]] name = "matchbox_protocol" -version = "0.7.0" +version = "0.8.0" dependencies = [ "cfg-if", "derive_more", @@ -2867,7 +2867,7 @@ dependencies = [ [[package]] name = "matchbox_server" -version = "0.7.0" +version = "0.8.0" dependencies = [ "async-trait", "axum", @@ -2889,7 +2889,7 @@ dependencies = [ [[package]] name = "matchbox_signaling" -version = "0.7.0" +version = "0.8.0" dependencies = [ "async-trait", "axum", @@ -2910,7 +2910,7 @@ dependencies = [ [[package]] name = "matchbox_socket" -version = "0.7.0" +version = "0.8.0" dependencies = [ "async-compat", "async-trait", diff --git a/bevy_matchbox/Cargo.toml b/bevy_matchbox/Cargo.toml index 6877ec99..e2f5f77d 100644 --- a/bevy_matchbox/Cargo.toml +++ b/bevy_matchbox/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_matchbox" -version = "0.7.0" +version = "0.8.0" authors = [ "Johan Helsing ", "Garry O'Donnell ", "Spencer C. Imbleau ", diff --git a/matchbox_server/Cargo.toml b/matchbox_server/Cargo.toml index fd40f131..d8e1fd8a 100644 --- a/matchbox_server/Cargo.toml +++ b/matchbox_server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "matchbox_server" -version = "0.7.0" +version = "0.8.0" authors = ["Johan Helsing "] 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.7", path = "../matchbox_signaling" } -matchbox_protocol = { version = "0.7", path = "../matchbox_protocol", features = [ +matchbox_signaling = { version = "0.8", path = "../matchbox_signaling" } +matchbox_protocol = { version = "0.8", path = "../matchbox_protocol", features = [ "json", ] } async-trait = "0.1" diff --git a/matchbox_signaling/Cargo.toml b/matchbox_signaling/Cargo.toml index 6597479c..6877d9ad 100644 --- a/matchbox_signaling/Cargo.toml +++ b/matchbox_signaling/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "matchbox_signaling" -version = "0.7.0" +version = "0.8.0" authors = [ "Johan Helsing ", "Spencer C. Imbleau ", @@ -18,7 +18,7 @@ categories = [ repository = "https://github.com/johanhelsing/matchbox" [dependencies] -matchbox_protocol = { version = "0.7", path = "../matchbox_protocol", features = [ +matchbox_protocol = { version = "0.8", path = "../matchbox_protocol", features = [ "json", ] } axum = { version = "0.6", features = ["ws"] } diff --git a/matchbox_socket/Cargo.toml b/matchbox_socket/Cargo.toml index 8ab48a38..c4bc0e85 100644 --- a/matchbox_socket/Cargo.toml +++ b/matchbox_socket/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "matchbox_socket" -version = "0.7.0" +version = "0.8.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 = { version = "0.7", path = "../matchbox_protocol", default-features = false } +matchbox_protocol = { version = "0.8", path = "../matchbox_protocol", default-features = false } futures-channel = { version = "0.3", default-features = false, features = [ "sink", ] }