From aab3f73de13bb5a11bf020588207603359154498 Mon Sep 17 00:00:00 2001 From: Guillaume Lagrange Date: Wed, 12 Feb 2025 16:00:19 +0100 Subject: [PATCH 1/2] feat(divan_compat): add correct MSRV --- crates/divan_compat/Cargo.toml | 2 +- crates/divan_compat/macros/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/divan_compat/Cargo.toml b/crates/divan_compat/Cargo.toml index 032411a9..7c5d6e98 100644 --- a/crates/divan_compat/Cargo.toml +++ b/crates/divan_compat/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "codspeed-divan-compat" version = "2.8.0-alpha.3" -rust-version = "1.74" # MSRV TODO: Check versioning +rust-version = "1.80" edition = "2021" description = "Divan compatibility layer for CodSpeed" authors = ["Arthur Pastel "] diff --git a/crates/divan_compat/macros/Cargo.toml b/crates/divan_compat/macros/Cargo.toml index 67d6c8eb..9f671f4f 100644 --- a/crates/divan_compat/macros/Cargo.toml +++ b/crates/divan_compat/macros/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "codspeed-divan-compat-macros" version = "2.8.0-alpha.3" -rust-version = "1.74" # MSRV TODO: Check versioning +rust-version = "1.80" edition = "2021" description = "Macros for the Divan compatibility layer for CodSpeed" authors = ["Arthur Pastel "] From 38f72708a1f3ade9248be326dafca5117d8bbac4 Mon Sep 17 00:00:00 2001 From: Guillaume Lagrange Date: Wed, 12 Feb 2025 15:55:07 +0100 Subject: [PATCH 2/2] feat: add msrv check in CI --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6cf6cbfb..68611fab 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,6 +34,8 @@ jobs: run: cargo msrv --path crates/bencher_compat verify -- cargo check --all-features --config codspeed=true - name: Check criterion_compat MSRV run: cargo msrv --path crates/criterion_compat verify -- cargo check --all-features --config codspeed=true + - name: Check divan_compat MSRV + run: cargo msrv --path crates/divan_compat verify -- cargo check --all-features --config codspeed=true tests: runs-on: ubuntu-latest