From 40e1e3fc064735aa6a2ed610b223c85d2b413d99 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Tue, 13 Aug 2024 13:06:29 +0200 Subject: [PATCH] Bump minimum supported Rust version (MSRV) The new MSRV is 1.70, which matches the current MSRV of Tokio. --- .github/workflows/rust.yml | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 47d00b7..bff6689 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -12,7 +12,7 @@ jobs: - name: Install rust uses: actions-rs/toolchain@v1 with: - toolchain: 1.63.0 + toolchain: 1.70.0 override: true components: clippy - name: Check rust and cargo version diff --git a/Cargo.toml b/Cargo.toml index 765612b..68fa627 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ authors = [ "Frank Denis " ] edition = "2018" -rust-version = "1.63" +rust-version = "1.70" description = "Idiomatic wrapper for inotify" documentation = "https://docs.rs/inotify"