-
-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
naia_derive -> 0.19.0 naia_shared -> 0.19.0 naia_server -> 0.19.0 naia_client -> 0.19.0 naia_bevy_shared -> 0.19.0 naia_bevy_client -> 0.19.0 naia_bevy_server -> 0.19.0
- Loading branch information
1 parent
665b7ba
commit a954468
Showing
11 changed files
with
27 additions
and
27 deletions.
There are no files selected for viewing
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 = "naia-bevy-client" | ||
version = "0.18.0" | ||
version = "0.19.0" | ||
authors = ["connorcarpenter <[email protected]>"] | ||
workspace = "../../.." | ||
description = "Library to faciliate naia_client & Bevy interop" | ||
|
@@ -15,7 +15,7 @@ maintenance = { status = "actively-developed" } | |
[features] | ||
|
||
[dependencies] | ||
naia-client = { version = "0.18", path = "../../../client", features = ["bevy_support", "wbindgen"] } | ||
naia-bevy-shared = { version = "0.18", path = "../shared" } | ||
naia-client = { version = "0.19", path = "../../../client", features = ["bevy_support", "wbindgen"] } | ||
naia-bevy-shared = { version = "0.19", path = "../shared" } | ||
bevy_app = { version = "0.10", default-features=false } | ||
bevy_ecs = { version = "0.10", default-features=false } |
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 = "naia-bevy-server" | ||
version = "0.18.0" | ||
version = "0.19.0" | ||
authors = ["connorcarpenter <[email protected]>"] | ||
workspace = "../../.." | ||
description = "Library to faciliate naia_server & Bevy interop" | ||
|
@@ -13,7 +13,7 @@ edition = "2021" | |
maintenance = { status = "actively-developed" } | ||
|
||
[dependencies] | ||
naia-server = { version = "0.18", path = "../../../server", features = ["bevy_support"] } | ||
naia-bevy-shared = { version = "0.18", path = "../shared" } | ||
naia-server = { version = "0.19", path = "../../../server", features = ["bevy_support"] } | ||
naia-bevy-shared = { version = "0.19", path = "../shared" } | ||
bevy_app = { version = "0.10", default-features=false } | ||
bevy_ecs = { version = "0.10", default-features=false } |
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 = "naia-bevy-shared" | ||
version = "0.18.0" | ||
version = "0.19.0" | ||
authors = ["connorcarpenter <[email protected]>"] | ||
workspace = "../../.." | ||
description = "Library to faciliate naia & Bevy interop, functionality shared by client & server versions" | ||
|
@@ -15,6 +15,6 @@ maintenance = { status = "actively-developed" } | |
[features] | ||
|
||
[dependencies] | ||
naia-shared = { version = "0.18", path = "../../../shared", features = ["bevy_support", "wbindgen"] } | ||
naia-shared = { version = "0.19", path = "../../../shared", features = ["bevy_support", "wbindgen"] } | ||
bevy_app = { version = "0.10", default-features=false } | ||
bevy_ecs = { version = "0.10", default-features=false } |
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,7 +1,7 @@ | ||
[package] | ||
name = "naia-hecs-client" | ||
# 0.18 is unpublished for now, due to lack of use of this crate, as well as plans for rapid releases - 2/28/2023 | ||
version = "0.18.0" | ||
# 0.19 is unpublished for now, due to lack of use of this crate, as well as plans for rapid releases - 2/28/2023 | ||
version = "0.19.0" | ||
authors = ["connorcarpenter <[email protected]>"] | ||
workspace = "../../.." | ||
description = "Library to faciliate naia_client & Hecs interop" | ||
|
@@ -20,6 +20,6 @@ wbindgen = [ "naia-client/wbindgen", "naia-hecs-shared/wbindgen" ] | |
mquad = [ "naia-client/mquad", "naia-hecs-shared/mquad" ] | ||
|
||
[dependencies] | ||
naia-client = { version = "0.18", path = "../../../client" } | ||
naia-hecs-shared = { version = "0.18", path = "../shared" } | ||
naia-client = { version = "0.19", path = "../../../client" } | ||
naia-hecs-shared = { version = "0.19", path = "../shared" } | ||
hecs = { version = "0.9" } |
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,7 +1,7 @@ | ||
[package] | ||
name = "naia-hecs-server" | ||
# 0.18 is unpublished for now, due to lack of use of this crate, as well as plans for rapid releases - 2/28/2023 | ||
version = "0.18.0" | ||
# 0.19 is unpublished for now, due to lack of use of this crate, as well as plans for rapid releases - 2/28/2023 | ||
version = "0.19.0" | ||
authors = ["connorcarpenter <[email protected]>"] | ||
workspace = "../../.." | ||
description = "Library to faciliate naia_server & Hecs interop" | ||
|
@@ -16,6 +16,6 @@ edition = "2021" | |
maintenance = { status = "actively-developed" } | ||
|
||
[dependencies] | ||
naia-server = { version = "0.18", path = "../../../server" } | ||
naia-hecs-shared = { version = "0.18", path = "../shared" } | ||
naia-server = { version = "0.19", path = "../../../server" } | ||
naia-hecs-shared = { version = "0.19", path = "../shared" } | ||
hecs = { version = "0.9" } |
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,7 +1,7 @@ | ||
[package] | ||
name = "naia-hecs-shared" | ||
# 0.18 is unpublished for now, due to lack of use of this crate, as well as plans for rapid releases - 2/28/2023 | ||
version = "0.18.0" | ||
# 0.19 is unpublished for now, due to lack of use of this crate, as well as plans for rapid releases - 2/28/2023 | ||
version = "0.19.0" | ||
authors = ["connorcarpenter <[email protected]>"] | ||
workspace = "../../.." | ||
description = "Library to faciliate naia & Hecs interop, functionality shared by client & server versions" | ||
|
@@ -20,5 +20,5 @@ wbindgen = [ "naia-shared/wbindgen" ] | |
mquad = [ "naia-shared/mquad" ] | ||
|
||
[dependencies] | ||
naia-shared = { version = "0.18", path = "../../../shared" } | ||
naia-shared = { version = "0.19", path = "../../../shared" } | ||
hecs = { version = "0.9" } |
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 = "naia-client" | ||
version = "0.18.0" | ||
version = "0.19.0" | ||
authors = ["connorcarpenter <[email protected]>"] | ||
workspace = ".." | ||
description = "Provides a cross-platform client that can send/receive messages to/from a server, and has a pool of in-scope entities/components that is synced with the server." | ||
|
@@ -24,7 +24,7 @@ zstd_support = ["naia-shared/zstd_support"] | |
|
||
[dependencies] | ||
naia-client-socket = { version = "0.15", path = "../socket/client" } | ||
naia-shared = { version = "0.18", path = "../shared" } | ||
naia-shared = { version = "0.19", path = "../shared" } | ||
cfg-if = { version = "1.0" } | ||
log = { version = "0.4" } | ||
bevy_ecs = { version = "0.10", default_features = false, optional = true } |
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 = "naia-server" | ||
version = "0.18.0" | ||
version = "0.19.0" | ||
authors = ["connorcarpenter <[email protected]>"] | ||
workspace = ".." | ||
description = "A server that uses either UDP or WebRTC communication to send/receive messages to/from connected clients, and syncs registered Entities/Components to clients to whom they are in-scope." | ||
|
@@ -22,7 +22,7 @@ zstd_support = ["naia-shared/zstd_support"] | |
|
||
[dependencies] | ||
naia-server-socket = { version = "0.15", path = "../socket/server" } | ||
naia-shared = { version = "0.18", path = "../shared" } | ||
naia-shared = { version = "0.19", path = "../shared" } | ||
bevy_ecs = { version = "0.10", default_features = false, optional = true } | ||
log = { version = "0.4" } | ||
ring = { version = "0.16.15" } | ||
|
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 = "naia-shared" | ||
version = "0.18.0" | ||
version = "0.19.0" | ||
authors = ["connorcarpenter <[email protected]>"] | ||
workspace = ".." | ||
description = "Common functionality shared between naia-server & naia-client crates" | ||
|
@@ -24,7 +24,7 @@ zstd_support = [ "zstd" ] | |
|
||
[dependencies] | ||
naia-socket-shared = { version = "0.15", path = "../socket/shared" } | ||
naia-derive = { version = "0.18", path = "derive" } | ||
naia-derive = { version = "0.19", path = "derive" } | ||
naia-serde = { version = "0.18", path = "serde" } | ||
log = { version = "0.4" } | ||
cfg-if = { version = "1.0" } | ||
|
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 = "naia-derive" | ||
version = "0.18.0" | ||
version = "0.19.0" | ||
authors = ["connorcarpenter <[email protected]>"] | ||
workspace = "../.." | ||
description = "Procedural macros to simplify implementation of Naia Replicate & Protocolize traits" | ||
|
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 = "naia-server-socket" | ||
version = "0.15.0" | ||
version = "0.15.1" | ||
authors = ["connorcarpenter <[email protected]>"] | ||
workspace = "../.." | ||
description = "An abstraction to provide a common API over either a UDP socket or a service that can establish WebRTC connections" | ||
|