Skip to content

Commit

Permalink
Messed up the MSRV.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ethiraric committed Mar 30, 2024
1 parent 77306e1 commit 0a63795
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" ]
Expand Down
6 changes: 4 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]

Expand Down

0 comments on commit 0a63795

Please sign in to comment.