From 072498e0cd2ee64dbb6d15826bafa3e8dda9b9ac Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 26 Jul 2020 16:22:49 -0700 Subject: [PATCH] Update documented minimum supported Rust version --- README.md | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 691b8ca..024a2ba 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ including using pasted identifiers to define new items. paste = "0.1" ``` -This approach works with any stable or nightly Rust compiler 1.30+. +This approach works with any Rust compiler 1.45+.
diff --git a/src/lib.rs b/src/lib.rs index 60e3b2a..b998d4a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -15,7 +15,7 @@ //! This crate provides a flexible way to paste together identifiers in a macro, //! including using pasted identifiers to define new items. //! -//! This approach works with any stable or nightly Rust compiler 1.30+. +//! This approach works with any Rust compiler 1.45+. //! //!
//!