From 787403daa146e0840e6cda549eced95438e95803 Mon Sep 17 00:00:00 2001 From: Ethiraric Date: Sat, 30 Mar 2024 19:39:53 +0100 Subject: [PATCH] Messed up the MSRV. --- parser/Cargo.toml | 2 +- parser/src/lib.rs | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/parser/Cargo.toml b/parser/Cargo.toml index f4756c1..6eb3390 100644 --- a/parser/Cargo.toml +++ b/parser/Cargo.toml @@ -12,7 +12,7 @@ description = "A fully YAML 1.2 compliant YAML parser" repository = "https://github.com/Ethiraric/yaml-rust2" readme = "README.md" edition = "2021" -rust-version = "1.65.0" +rust-version = "1.70.0" [features] default = [ "encoding" ] diff --git a/parser/src/lib.rs b/parser/src/lib.rs index a171691..d430177 100644 --- a/parser/src/lib.rs +++ b/parser/src/lib.rs @@ -31,17 +31,19 @@ //! ``` //! //! # Features +//! **Note:** With all features disabled, this crate's MSRV is `1.65.0`. +//! //! #### `encoding` (_enabled by default_) //! Enables encoding-aware decoding of Yaml documents. //! -//! This bumps MSRV up to `1.70.0`. +//! The MSRV for this feature is `1.70.0`. //! //! #### `debug_prints` //! Enables the `debug` module and usage of debug prints in the scanner and the parser. Do not //! enable if you are consuming the crate rather than working on it as this can significantly //! decrease performance. //! -//! This bumps MSRV up to 1.70.0. +//! The MSRV for this feature is `1.70.0`. #![warn(missing_docs, clippy::pedantic)]