From 32ba3f8aa8b88ea36dff2ae4767cd3b22f2d1634 Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Sat, 22 Oct 2022 20:13:44 +0100 Subject: [PATCH] clarify MSRV --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 448989c..41313f7 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -269,7 +269,7 @@ //! //! This crate's minimum supported `rustc` version is `1.56.0`. //! -//! If only the `std` feature is enabled, MSRV will be updated conservatively. +//! If only the `std` feature is enabled, MSRV will be updated conservatively, supporting at least latest 8 versions of the compiler. //! When using other features, like `parking_lot`, MSRV might be updated more frequently, up to the latest stable. //! In both cases, increasing MSRV is *not* considered a semver-breaking change. //!