From 4fc90bf70f4744a250dfb8804479f88c188de41b Mon Sep 17 00:00:00 2001 From: Colin Snover Date: Sat, 30 Mar 2024 01:06:44 -0500 Subject: [PATCH] Update MSRV to reflect changes to dependencies Replacing basic-toml crate in dtolnay/trybuild#239 raised MSRV to 1.67 (toml_datetime specifies this minimum), but CI workflow was updated to 1.70 in that PR, so this patch raises MSRV to 1.70 instead. A reference to even older MSRV in the README is removed entirely since this information lives in Cargo.toml as of Rust 1.56. --- Cargo.toml | 2 +- README.md | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e9b78f0..6ea2b16 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ exclude = ["screenshots/*"] keywords = ["macros", "testing", "dev-dependencies"] license = "MIT OR Apache-2.0" repository = "https://github.com/dtolnay/trybuild" -rust-version = "1.56" +rust-version = "1.70" [features] # Experimental: highlight the diff between the expected and actual compiler diff --git a/README.md b/README.md index 9041e35..ebeb44c 100644 --- a/README.md +++ b/README.md @@ -32,8 +32,6 @@ misuse of non-macro APIs. trybuild = "1.0" ``` -*Compiler support: requires rustc 1.45+* -
## Compile-fail tests