Bump MSRV to 1.79

The associated type bounds feature, stabilized in 1.79 allows adding
an implied Send bound on all IntoFuture types used with MaybeFuture,
so every function doesn't have to be marked as Send.

This is going to be especially useful with wasm, because it allows the
Send bound to be turned on and off in one place.
This commit is contained in:
Kevin Mehall 2025-04-08 08:45:09 -06:00
parent 25556d7f6b
commit 413093e181
2 changed files with 2 additions and 2 deletions

View file

@ -21,7 +21,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
rust: ['stable', '1.76']
rust: ['stable', '1.79']
runs-on: ${{ matrix.os }}