forked from lucaspoffo/renet
-
Notifications
You must be signed in to change notification settings - Fork 4
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
Showing
10 changed files
with
28 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 @@ | ||
# CHANGELOG | ||
|
||
## WIP | ||
## 0.1.0 - 12/23/24 | ||
|
||
- Update `renet2` sub-crate dependencies. | ||
- `rustls`: 0.21 -> 0.23.5 | ||
|
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
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
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_replicon_renet2" | ||
version = "0.0.9" | ||
version = "0.1.0" | ||
authors = [ | ||
"Hennadii Chernyshchyk <[email protected]>", | ||
"koe <[email protected]>", | ||
|
@@ -23,13 +23,13 @@ rustdoc-args = ["-Zunstable-options", "--cfg", "docsrs"] | |
|
||
[dependencies] | ||
bevy_replicon = { version = "0.29", default-features = false } | ||
bevy_renet2 = { path = "../bevy_renet2", version = "0.0.7", default-features = false } | ||
bevy_renet2 = { path = "../bevy_renet2", version = "0.1.0", default-features = false } | ||
bevy = { version = "0.15", default-features = false } | ||
|
||
[dev-dependencies] | ||
serde = "1.0" | ||
clap = { version = "4.1", features = ["derive"] } | ||
bevy_renet2 = { path = "../bevy_renet2", version = "0.0.7", features = ["native_transport"] } | ||
bevy_renet2 = { path = "../bevy_renet2", version = "0.1.0", features = ["native_transport"] } | ||
bevy = { version = "0.15", default-features = false, features = [ | ||
"bevy_state", | ||
"bevy_text", | ||
|
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
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 = "renet2" | ||
version = "0.0.7" | ||
version = "0.1.0" | ||
authors = ["koe <[email protected]>"] | ||
description = "Server/Client network protocol library for multiplayer games, forked from renet" | ||
edition = "2021" | ||
|
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 = "renet2_netcode" | ||
version = "0.0.7" | ||
version = "0.1.0" | ||
authors = ["koe <[email protected]>"] | ||
description = "Netcode integration for renet2" | ||
edition = "2021" | ||
|
@@ -97,8 +97,8 @@ ws_client_transport = [ | |
bytes = "1.1" | ||
log = "0.4" | ||
octets = "0.3" | ||
renetcode2 = { path = "../renetcode2", version = "0.0.7" } | ||
renet2 = { path = "../renet2", version = "0.0.7" } | ||
renetcode2 = { path = "../renetcode2", version = "0.1.0" } | ||
renet2 = { path = "../renet2", version = "0.1.0" } | ||
hmac-sha256 = { version = "1.1" } | ||
url = { version = "2.4" } | ||
bevy_ecs = { version = "0.15", 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
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
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