Messed up the MSRV.

This commit is contained in:
Ethiraric 2024-03-30 19:39:53 +01:00
parent f166970a3e
commit d618d06061
2 changed files with 5 additions and 3 deletions

View file

@ -12,7 +12,7 @@ description = "A fully YAML 1.2 compliant YAML parser"
repository = "https://github.com/Ethiraric/yaml-rust2" repository = "https://github.com/Ethiraric/yaml-rust2"
readme = "README.md" readme = "README.md"
edition = "2021" edition = "2021"
rust-version = "1.65.0" rust-version = "1.70.0"
[features] [features]
default = [ "encoding" ] default = [ "encoding" ]

View file

@ -31,17 +31,19 @@
//! ``` //! ```
//! //!
//! # Features //! # Features
//! **Note:** With all features disabled, this crate's MSRV is `1.65.0`.
//!
//! #### `encoding` (_enabled by default_) //! #### `encoding` (_enabled by default_)
//! Enables encoding-aware decoding of Yaml documents. //! 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` //! #### `debug_prints`
//! Enables the `debug` module and usage of debug prints in the scanner and the parser. Do not //! 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 //! enable if you are consuming the crate rather than working on it as this can significantly
//! decrease performance. //! decrease performance.
//! //!
//! This bumps MSRV up to 1.70.0. //! The MSRV for this feature is `1.70.0`.
#![warn(missing_docs, clippy::pedantic)] #![warn(missing_docs, clippy::pedantic)]