-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
cb59269
commit 3c98383
Showing
8 changed files
with
28 additions
and
8 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
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 = "zusi-fahrpult" | ||
description = "TCP-Client for Zusi 3 Hobby `Fahrpult`-Mode." | ||
version = "0.1.3" | ||
version = "0.1.4" | ||
authors = ["Jannis Schaefer <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
edition = "2021" | ||
|
@@ -10,4 +10,4 @@ readme = "../README.md" | |
|
||
[dependencies] | ||
thiserror = "1" | ||
zusi-protocol = { path = "../zusi-protocol", version = "0.2.0" } | ||
zusi-protocol = { path = "../zusi-protocol", version = "0.2.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
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 = "zusi-protocol-derive" | ||
description = "Contains derivable serialization and deserialization logic for the Zusi 3 TCP-Protocol" | ||
version = "0.1.1" | ||
version = "0.1.2" | ||
authors = ["Jannis Schaefer <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
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
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 = "zusi-protocol" | ||
description = "Contains serialization and deserialization logic for the Zusi 3 TCP-Protocol" | ||
version = "0.2.0" | ||
version = "0.2.1" | ||
authors = ["Jannis Schaefer <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
edition = "2021" | ||
|
@@ -11,7 +11,7 @@ readme = "../README.md" | |
[dependencies] | ||
thiserror = "1" | ||
log = "0.4" | ||
zusi-protocol-derive = { path = "../zusi-protocol-derive", version = "0.1.1", optional = true } | ||
zusi-protocol-derive = { path = "../zusi-protocol-derive", version = "0.1.2", optional = true } | ||
nom = { version = "7", optional = true } | ||
either = { version = "1.10", 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "zusi" | ||
description = "Proxy crate which bundles an async and sync TCP client for Zusi 3" | ||
version = "0.3.0" | ||
version = "0.3.1" | ||
authors = ["Jannis Schaefer <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
edition = "2021" | ||
|
@@ -31,8 +31,8 @@ required-features = ["fahrpult", "async"] | |
|
||
[dependencies] | ||
either = "1.10" | ||
zusi-fahrpult = { path = "../zusi-fahrpult", optional = true, version = "0.1.3" } | ||
zusi-protocol = { path = "../zusi-protocol", version = "0.2.0" } | ||
zusi-fahrpult = { path = "../zusi-fahrpult", optional = true, version = "0.1.4" } | ||
zusi-protocol = { path = "../zusi-protocol", version = "0.2.1" } | ||
thiserror = "1" | ||
|
||
bytes = { version = "1", optional = true } | ||
|