-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleanup pending transfers and deliveries on link detach (#52)
- Loading branch information
Showing
11 changed files
with
231 additions
and
176 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 |
---|---|---|
|
@@ -11,26 +11,30 @@ jobs: | |
- stable | ||
- nightly | ||
|
||
name: ${{ matrix.version }} - x86_64-apple-darwin | ||
name: ${{ matrix.version }} - aarch64-apple-darwin | ||
runs-on: macOS-latest | ||
|
||
steps: | ||
- uses: actions/checkout@master | ||
|
||
- name: Install ${{ matrix.version }} | ||
uses: actions-rs/toolchain@v1 | ||
uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
with: | ||
toolchain: ${{ matrix.version }}-x86_64-apple-darwin | ||
toolchain: ${{ matrix.version }}-aarch64-apple-darwin | ||
profile: minimal | ||
override: true | ||
|
||
- name: Generate Cargo.lock | ||
uses: actions-rs/cargo@v1 | ||
- name: Cache cargo registry | ||
uses: actions/cache@v4 | ||
with: | ||
command: generate-lockfile | ||
path: ~/.cargo/registry | ||
key: ${{ matrix.version }}-aarch64-apple-darwin-cargo-registry-trimmed-${{ hashFiles('**/Cargo.lock') }} | ||
|
||
- name: Cache Dependencies | ||
uses: Swatinem/[email protected] | ||
- name: Cache cargo index | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.cargo/git | ||
key: ${{ matrix.version }}-aarch64-apple-darwin-cargo-index-trimmed-${{ hashFiles('**/Cargo.lock') }} | ||
|
||
- name: Run tests | ||
uses: actions-rs/cargo@v1 | ||
|
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 = "ntex-amqp" | ||
version = "2.1.6" | ||
version = "2.1.7" | ||
authors = ["ntex contributors <[email protected]>"] | ||
description = "AMQP 1.0 Client/Server framework" | ||
documentation = "https://docs.rs/ntex-amqp" | ||
|
@@ -28,7 +28,7 @@ ntex = "1" | |
ntex-util = "1.0.1" | ||
ntex-amqp-codec = "0.9" | ||
|
||
bitflags = "2.4" | ||
bitflags = "2" | ||
derive_more = "0.99" | ||
log = "0.4" | ||
pin-project-lite = "0.2" | ||
|
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.