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 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 "]