From 51ef31d69c526b1caf052f1534ed21ff0570d83b Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sat, 30 Mar 2024 20:21:53 +0900 Subject: [PATCH] Revert "Bump MSRV to 1.60" See https://github.com/eupn/macrotest/pull/108#issuecomment-2028018098 for details. --- Cargo.toml | 2 +- README.md | 4 ++-- src/lib.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 731c9ae..7f49f95 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "macrotest" version = "1.0.11" # remember to update in lib.rs authors = ["eupn "] edition = "2018" -rust-version = "1.60" +rust-version = "1.56" license = "MIT OR Apache-2.0" readme = "README.md" repository = "https://github.com/eupn/macrotest" diff --git a/README.md b/README.md index 6df277a..8f32ec4 100644 --- a/README.md +++ b/README.md @@ -2,14 +2,14 @@ [![Travis-CI](https://api.travis-ci.com/eupn/macrotest.svg?branch=master)](https://travis-ci.com/eupn/macrotest) [![Crates.io](https://img.shields.io/crates/v/macrotest)](https://crates.io/crates/macrotest) -![MSRV 1.60](https://img.shields.io/badge/MSRV-1.60-orange.svg) +![MSRV 1.56](https://img.shields.io/badge/MSRV-1.56-orange.svg) [![docs.rs](https://docs.rs/macrotest/badge.svg)](https://docs.rs/macrotest/) [![Crates.io](https://img.shields.io/crates/d/macrotest)](https://crates.io/crates/macrotest) [![Crates.io](https://img.shields.io/crates/l/macrotest)](https://crates.io/crates/macrotest) Similar to [trybuild], but allows you to test how declarative or procedural macros are expanded. -*Minimal Supported Rust Version: 1.60* +*Minimal Supported Rust Version: 1.56* ---- diff --git a/src/lib.rs b/src/lib.rs index 6b0a44a..1dc6f9e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -5,7 +5,7 @@ //! //! Similar to [trybuild], but allows you to write tests on how macros are expanded. //! -//! *Minimal Supported Rust Version: 1.60* +//! *Minimal Supported Rust Version: 1.56* //! //!
//!