update MSRV to 1.80 and test it in CI

This commit is contained in:
Carl Meyer 2025-02-21 18:09:07 -08:00
parent 70a0172721
commit 868116ee08
No known key found for this signature in database
GPG key ID: 2D1FB7916A52E121
3 changed files with 3 additions and 2 deletions

View file

@ -18,6 +18,7 @@ jobs:
strategy:
matrix:
rust:
- 1.80.0
- stable
- beta
experimental:

View file

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/salsa-rs/salsa"
description = "A generic framework for on-demand, incrementalized computation (experimental)"
rust-version = "1.76"
rust-version = "1.80"
[dependencies]
arc-swap = "1"

View file

@ -1,4 +1,4 @@
#[rustversion::stable]
#[rustversion::all(stable, since(1.84))]
#[test]
fn compile_fail() {
let t = trybuild::TestCases::new();