Skip to content

Commit 2c47ecc

Browse files
authored
Merge pull request #712 from carljm/msrv
update MSRV to 1.80 and test it in CI
2 parents 70a0172 + 868116e commit 2c47ecc

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/test.yml

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
strategy:
1919
matrix:
2020
rust:
21+
- 1.80.0
2122
- stable
2223
- beta
2324
experimental:

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
license = "Apache-2.0 OR MIT"
77
repository = "https://github.com/salsa-rs/salsa"
88
description = "A generic framework for on-demand, incrementalized computation (experimental)"
9-
rust-version = "1.76"
9+
rust-version = "1.80"
1010

1111
[dependencies]
1212
arc-swap = "1"

tests/compile_fail.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#[rustversion::stable]
1+
#[rustversion::all(stable, since(1.84))]
22
#[test]
33
fn compile_fail() {
44
let t = trybuild::TestCases::new();

0 commit comments

Comments
 (0)