From 24d61ad47de428a2248257bb072a8a18c4b78596 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Jan 2025 17:35:25 +0000 Subject: [PATCH] Bump nom from 7.1.3 to 8.0.0 Bumps [nom](https://github.com/rust-bakery/nom) from 7.1.3 to 8.0.0. - [Changelog](https://github.com/rust-bakery/nom/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-bakery/nom/compare/7.1.3...8.0.0) --- updated-dependencies: - dependency-name: nom dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 13 +++++++++++-- lib/parse/Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d142bfe7da..5a93505af3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -979,6 +979,15 @@ dependencies = [ "minimal-lexical", ] +[[package]] +name = "nom" +version = "8.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405" +dependencies = [ + "memchr", +] + [[package]] name = "nom_locate" version = "4.2.0" @@ -987,7 +996,7 @@ checksum = "1e3c83c053b0713da60c5b8de47fe8e494fe3ece5267b2f23090a07a053ba8f3" dependencies = [ "bytecount", "memchr", - "nom", + "nom 7.1.3", ] [[package]] @@ -1053,7 +1062,7 @@ dependencies = [ "ast", "indoc", "insta", - "nom", + "nom 8.0.0", "nom_locate", "position", "pretty_assertions", diff --git a/lib/parse/Cargo.toml b/lib/parse/Cargo.toml index 398ba53af8..18430bd721 100644 --- a/lib/parse/Cargo.toml +++ b/lib/parse/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] ast = { path = "../ast" } -nom = "7.1.3" +nom = "8.0.0" nom_locate = "4.2.0" position = { path = "../position" }