From 4ce92a4b11c8fc775f2bba3cdba2c19ba040cd7c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Mar 2026 07:23:46 +0000 Subject: [PATCH] build(deps): 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-version: 8.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 15 ++++++++++++--- Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6bc0577..73ae0ce 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -577,7 +577,7 @@ dependencies = [ "hashbrown 0.15.5", "indexmap", "insta", - "nom", + "nom 8.0.0", "nom-tracable", "nom_locate", "proptest", @@ -594,13 +594,22 @@ 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-tracable" version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6a39d3ec4e5bc9816ca540bd6b1e4885c0275536eb3293d317d984bb17f9a294" dependencies = [ - "nom", + "nom 7.1.3", "nom-tracable-macros", "nom_locate", ] @@ -623,7 +632,7 @@ checksum = "1e3c83c053b0713da60c5b8de47fe8e494fe3ece5267b2f23090a07a053ba8f3" dependencies = [ "bytecount", "memchr", - "nom", + "nom 7.1.3", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index cbf8a99..fe0e65c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ color-eyre = "0.6" fast-float2 = "0.2" hashbrown = { version = "0.15", features = ["serde"] } indexmap = { version = "2.0", features = ["serde"] } -nom = "7.1" +nom = "8.0" nom-tracable = "0.9" nom_locate = "4.2" serde = { version = "1.0", features = ["serde_derive"], optional = true }