From ddcce957a17dc8cfabbe58270f0b9fce85c1b3be Mon Sep 17 00:00:00 2001 From: Zakarum Date: Fri, 20 Dec 2024 13:13:30 +0100 Subject: [PATCH] Set MSRV to 1.80.1 --- .github/workflows/msrv.yml | 4 ++-- Cargo.toml | 2 ++ proc/Cargo.toml | 1 + 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/msrv.yml b/.github/workflows/msrv.yml index eddbf6c..3c6ce47 100644 --- a/.github/workflows/msrv.yml +++ b/.github/workflows/msrv.yml @@ -19,6 +19,6 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Install MSRV - run: rustup install 1.80 + run: rustup install 1.80.1 - name: Test on MSRV - run: cargo +1.80 test + run: cargo +1.80.1 test diff --git a/Cargo.toml b/Cargo.toml index 4fceeb9..5fb2c17 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,6 +4,7 @@ version = "0.7.0" edition = "2021" license = "MIT OR Apache-2.0" repository = "https://github.com/zakarumych/egui-probe" +rust-version = "1.80.1" [package] name = "egui-probe" @@ -13,6 +14,7 @@ license.workspace = true description = "Trait and derive macro for exposing value editing in egui" documentation = "https://docs.rs/egui-probe" repository.workspace = true +rust-version.workspace = true [features] derive = ["dep:egui-probe-proc"] diff --git a/proc/Cargo.toml b/proc/Cargo.toml index ce66761..f438fb3 100644 --- a/proc/Cargo.toml +++ b/proc/Cargo.toml @@ -6,6 +6,7 @@ license.workspace = true description = "Derive macro for egui-probe crate" documentation = "https://docs.rs/egui-probe-proc" repository.workspace = true +rust-version.workspace = true [lib] proc-macro = true