From 6b41cb0d25e14166dd5aad49c29c410253761403 Mon Sep 17 00:00:00 2001 From: Philipp Schuster Date: Sun, 28 Apr 2024 21:36:48 +0200 Subject: [PATCH] cargo: update MSRV to 1.76 Required because of the "dep:" syntax in Cargo.toml file --- .github/workflows/rust.yml | 4 ++-- Cargo.toml | 2 +- README.md | 3 ++- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 3c2213b..0c1430e 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -14,7 +14,7 @@ jobs: rust: - stable - nightly - - 1.59.0 # MSRV + - 1.76.0 # MSRV steps: - uses: actions/checkout@v4 - name: Setup Rust toolchain @@ -33,7 +33,7 @@ jobs: rust: - stable - nightly - - 1.59.0 # MSRV + - 1.76.0 # MSRV steps: - uses: actions/checkout@v4 - name: Setup Rust toolchain diff --git a/Cargo.toml b/Cargo.toml index 36d5334..1e07796 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ exclude = [ "src/bin", # not supposed to be distributed+installable via cargo "res" ] -rust-version = "1.71.0" # TODO real MSRV +rust-version = "1.76.0" [features] default = ["recording"] diff --git a/README.md b/README.md index d3f7dda..3c6fd5f 100644 --- a/README.md +++ b/README.md @@ -86,4 +86,5 @@ fn select_strategy() -> StrategyKind { ``` ## MSRV (Minimal Supported Rust Version) -1.59.0 stable + +1.76 stable