client: Replace async-trait with RPITIT / AFIT

(return type position impl trait in traits / async fn in traits)
This commit is contained in:
Jonas Platte
2024-01-10 16:31:25 +01:00
parent d77c0d0bd7
commit 0b2a459400
10 changed files with 11 additions and 20 deletions

View File

@@ -67,7 +67,7 @@ jobs:
run: target/debug/xtask ci lint
msrv:
name: Rust 1.70 / ${{ matrix.name }}
name: Rust 1.75 / ${{ matrix.name }}
needs: xtask
runs-on: ubuntu-latest
strategy:
@@ -92,17 +92,17 @@ jobs:
- name: Checkout repo
uses: actions/checkout@v3
- name: Install rust 1.70 toolchain
- name: Install rust 1.75 toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: "1.70"
toolchain: "1.75"
- uses: Swatinem/rust-cache@v2
with:
# A stable compiler update should automatically not reuse old caches.
# Add the MSRV as a stable cache key too so bumping it also gets us a
# fresh cache.
shared-key: msrv1.70
shared-key: msrv1.75
- name: Get xtask
uses: actions/cache@v3