Skip to content

Commit 413093e

Browse files
committed
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.
1 parent 25556d7 commit 413093e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
strategy:
2222
matrix:
2323
os: [ubuntu-latest, windows-latest, macos-latest]
24-
rust: ['stable', '1.76']
24+
rust: ['stable', '1.79']
2525

2626
runs-on: ${{ matrix.os }}
2727

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ authors = ["Kevin Mehall <km@kevinmehall.net>"]
88
edition = "2021"
99
license = "Apache-2.0 OR MIT"
1010
repository = "https://github.com/kevinmehall/nusb"
11-
rust-version = "1.76" # keep in sync with .github/workflows/rust.yml
11+
rust-version = "1.79" # keep in sync with .github/workflows/rust.yml
1212

1313
[dependencies]
1414
atomic-waker = "1.1.2"

0 commit comments

Comments
 (0)