-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
re-export async-nats, bump async-nats to 0.27.1 (#135)
* re-export async-nats, bump async-nats to 0.25.1 Signed-off-by: stevelr <[email protected]> * re-export async-nats. bump to 0.11.3 Signed-off-by: stevelr <[email protected]> * make Transport Send + Sync Signed-off-by: stevelr <[email protected]> * add Clone to _Sender Signed-off-by: stevelr <[email protected]> * bump codegen Signed-off-by: stevelr <[email protected]> * smithy-bindgen macros Signed-off-by: stevelr <[email protected]> * docs Signed-off-by: stevelr <[email protected]> * add some tests Signed-off-by: stevelr <[email protected]> * add gh workflow file, rustfmt Signed-off-by: stevelr <[email protected]> * bump weld-codegen to 0.6.1 Signed-off-by: stevelr <[email protected]> * undo bump version Signed-off-by: stevelr <[email protected]> * remove scratch file Signed-off-by: stevelr <[email protected]> * README update Signed-off-by: stevelr <[email protected]> * remove unused symbols Signed-off-by: stevelr <[email protected]> * improve docs Signed-off-by: stevelr <[email protected]> * more docs Signed-off-by: stevelr <[email protected]> * make Transport Send + Sync so a Sender can be run in a spawned task Signed-off-by: stevelr <[email protected]> * bump async-nats to 0.27.1 Signed-off-by: stevelr <[email protected]> * fix Transport Clone Signed-off-by: stevelr <[email protected]> * add test case for keyvalue struct Signed-off-by: stevelr <[email protected]> * update crates: wasmbus-rpc to 0.12.0, weld-codegen to 0.7.0 Signed-off-by: stevelr <[email protected]> * make Transport Clone, fix clippy errors Signed-off-by: stevelr <[email protected]> --------- Signed-off-by: stevelr <[email protected]>
- Loading branch information
Showing
30 changed files
with
789 additions
and
152 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,61 @@ | ||
name: SMITHY_BINDGEN | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
paths: | ||
- "smithy-bindgen/**" | ||
tags: | ||
- "smithy-bindgen-v*" | ||
pull_request: | ||
branches: [main] | ||
paths: | ||
- "smithy-bindgen/**" | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
working-directory: ./smithy-bindgen | ||
|
||
jobs: | ||
rust_test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Update rust | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: stable | ||
components: rustfmt, clippy | ||
- name: run_all_tests_clippy_fmt | ||
working-directory: ${{ env.working-directory }} | ||
run: | | ||
make test | ||
make rust-check | ||
github_release: | ||
if: startswith(github.ref, 'refs/tags/') # Only run on tag push | ||
needs: rust_test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Create Release | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ github.ref }} | ||
release_name: Release ${{ github.ref }} | ||
draft: false | ||
prerelease: true | ||
|
||
crates_release: | ||
if: startswith(github.ref, 'refs/tags/') # Only run on tag push | ||
needs: github_release | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- id: crates-release-action | ||
uses: wasmcloud/common-actions/crates-release@main | ||
with: | ||
working-directory: ${{ env.working-directory }} | ||
crates-token: ${{ secrets.CRATES_PUBLISH_TOKEN }} |
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
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
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.