-
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.
byteserde_types always derives serde for included ascii types (#13)
- Loading branch information
1 parent
8462a2e
commit 0cad1f7
Showing
7 changed files
with
77 additions
and
11 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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[build] | ||
rustdocflags = ["-D", "warnings"] # denies warnings in docs |
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
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 |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
"bytestream", | ||
"clippy", | ||
"endianess", | ||
"endianness", | ||
"flds", | ||
"nextest", | ||
"nonoverlapping", | ||
|
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 |
---|---|---|
|
@@ -9,7 +9,7 @@ resolver = "2" | |
|
||
[workspace.package] | ||
# NOTE remember to update this and below [workspace.dependencies] for byteserde and byteserde_derive for the release | ||
version = "0.6.0" | ||
version = "0.6.1" | ||
authors = ["Softstream <[email protected]>"] | ||
readme = "readme.md" | ||
license-file = "LICENSE" | ||
|
@@ -21,9 +21,9 @@ categories = ["encoding"] | |
|
||
[workspace.dependencies] | ||
# workspace members | ||
byteserde = { version = "0.6.0", path = "./byteserde" } | ||
byteserde_derive = { version = "0.6.0", path = "./byteserde_derive" } | ||
byteserde_types = { version = "0.6.0", path = "./byteserde_types" } | ||
byteserde = { version = "0.6.1", path = "./byteserde" } | ||
byteserde_derive = { version = "0.6.1", path = "./byteserde_derive" } | ||
byteserde_types = { version = "0.6.1", path = "./byteserde_types" } | ||
|
||
|
||
bytes = "1.4" | ||
|
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