Skip to content

Commit 0122b46

Browse files
committed
Raise MSRV to 1.77
1 parent 0524cb3 commit 0122b46

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/main.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
strategy:
1919
matrix:
2020
version:
21-
- 1.72.1 # MSRV
21+
- 1.77.2 # MSRV
2222
- stable
2323
- nightly
2424
os:
@@ -38,19 +38,19 @@ jobs:
3838
rustup override set ${{ matrix.version }}
3939
4040
- name: check build serde,macos_kqueue for examples
41-
if: matrix.version != '1.72.1' && matrix.os == 'macos-latest'
41+
if: matrix.version != '1.77.2' && matrix.os == 'macos-latest'
4242
run: cargo check -p notify --features=serde,macos_kqueue --examples
4343

4444
- name: check build serde,macos_kqueue
45-
if: matrix.version == '1.72.1' && matrix.os == 'macos-latest'
45+
if: matrix.version == '1.77.2' && matrix.os == 'macos-latest'
4646
run: cargo check -p notify --features=serde,macos_kqueue
4747

4848
- name: check build serde for examples
49-
if: matrix.version != '1.72.1' && matrix.os != 'macos-latest'
49+
if: matrix.version != '1.77.2' && matrix.os != 'macos-latest'
5050
run: cargo check -p notify --features=serde --examples
5151

5252
- name: check build serde
53-
if: matrix.version == '1.72.1' && matrix.os != 'macos-latest'
53+
if: matrix.version == '1.77.2' && matrix.os != 'macos-latest'
5454
run: cargo check --features=serde
5555

5656
- name: check build without crossbeam/default features

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ exclude = [
1313
]
1414

1515
[workspace.package]
16-
rust-version = "1.72"
16+
rust-version = "1.77"
1717
homepage = "https://github.com/notify-rs/notify"
1818
repository = "https://github.com/notify-rs/notify.git"
1919
edition = "2021"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ _Cross-platform filesystem notification library for Rust._
1616
- [Examples][examples]
1717
- [Changelog][changelog]
1818
- [Upgrading notify from v4](UPGRADING_V4_TO_V5.md)
19-
- Minimum supported Rust version: **1.72**
19+
- Minimum supported Rust version: **1.77**
2020

2121
As used by: [alacritty], [cargo watch], [cobalt], [deno], [docket], [mdBook],
2222
[rust-analyzer], [watchexec], [watchfiles], [xi-editor],

rust-toolchain.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[toolchain]
2-
channel = "1.72.1"
2+
channel = "1.77.2"

0 commit comments

Comments
 (0)