-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Implement serde for network messages. * Make sure marker type implements serde. * add serde support to all required structs * use serdect * gate under serde feature * ci: add build with default features job * add serde tests and required changes/fixes * add support for encoding ciphersuite ID --------- Co-authored-by: David Craven <[email protected]>
- Loading branch information
1 parent
8b09d9d
commit 4712153
Showing
31 changed files
with
1,289 additions
and
55 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 |
---|---|---|
|
@@ -10,14 +10,26 @@ on: | |
|
||
jobs: | ||
|
||
build_default: | ||
name: build with default features | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
- uses: actions-rs/[email protected] | ||
with: | ||
toolchain: beta | ||
override: true | ||
- uses: actions-rs/[email protected] | ||
with: | ||
command: build | ||
|
||
test_beta: | ||
name: test on beta | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
# Because we use nightly features for building docs, | ||
# using --all-features will fail without nightly toolchain. | ||
- uses: actions-rs/[email protected] | ||
with: | ||
toolchain: beta | ||
|
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
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
Oops, something went wrong.