From d3d254034bd490b8b12457cac805a1967cf303c1 Mon Sep 17 00:00:00 2001 From: Nyaleph <97960996+NyalephTheCat@users.noreply.github.com> Date: Wed, 29 Jan 2025 09:25:06 +0100 Subject: [PATCH] Update README.md to change the recommended version (#1803) (#1804) * Update README.md --------- Co-authored-by: Geoffroy Couprie --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3a834eba..e27686d7 100644 --- a/README.md +++ b/README.md @@ -214,7 +214,7 @@ Some benchmarks are available on [GitHub](https://github.com/rust-bakery/parser_ ## Rust version requirements (MSRV) -The 7.0 series of nom supports **Rustc version 1.56 or greater**. +The 8.0 series of nom supports **Rustc version 1.65 or greater**. The current policy is that this will only be updated in the next major nom release. @@ -224,7 +224,7 @@ nom is available on [crates.io](https://crates.io/crates/nom) and can be include ```toml [dependencies] -nom = "7" +nom = "8" ``` There are a few compilation features: @@ -236,7 +236,7 @@ You can configure those features like this: ```toml [dependencies.nom] -version = "7" +version = "8" default-features = false features = ["alloc"] ```