From 5edbf9e3dc86d9efc4d106891ce257151113b3a7 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Sun, 12 May 2024 18:24:37 +0100 Subject: [PATCH] chore: switch to rustversion-msrv --- actix-macros/Cargo.toml | 3 +-- actix-macros/tests/trybuild.rs | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/actix-macros/Cargo.toml b/actix-macros/Cargo.toml index b96daeb9ce..2f112ed449 100644 --- a/actix-macros/Cargo.toml +++ b/actix-macros/Cargo.toml @@ -31,7 +31,6 @@ proc-macro2 = "1.0.60" [dev-dependencies] actix-rt = "2" - futures-util = { version = "0.3.17", default-features = false } -rustversion = "1" +rustversion-msrv = "0.99" trybuild = "1" diff --git a/actix-macros/tests/trybuild.rs b/actix-macros/tests/trybuild.rs index ab425d6da6..5cfb1b6ec0 100644 --- a/actix-macros/tests/trybuild.rs +++ b/actix-macros/tests/trybuild.rs @@ -1,4 +1,4 @@ -#[rustversion::stable(1.70)] // MSRV +#[rustversion_msrv::msrv] #[test] fn compile_macros() { let t = trybuild::TestCases::new();