From 700856d395bcd13ab389718a02af0d68ccf73573 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Feb 2026 22:48:15 +0000 Subject: [PATCH] chore(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 | 13 +++++++++++-- Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 963d5659..85a0d5f2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1601,7 +1601,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "74fef4569247a5f429d9156b9d0a2599914385dd189c539334c625d8099d90ab" dependencies = [ "futures-core", - "nom", + "nom 7.1.3", "pin-project-lite", ] @@ -3890,6 +3890,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 = "normalize-line-endings" version = "0.3.0" @@ -5549,7 +5558,7 @@ dependencies = [ "kube", "log", "memmap2", - "nom", + "nom 8.0.0", "num_cpus", "once_cell", "open", diff --git a/Cargo.toml b/Cargo.toml index f5f64a60..18a27bdf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -116,7 +116,7 @@ syntect = "5" # Syntax highlighting strip-ansi-escapes = "0.2" # Strip ANSI codes for testing # Dockerfile linting (hadolint-rs) -nom = "7" # Parser combinators for Dockerfile parsing +nom = "8" # Parser combinators for Dockerfile parsing anyhow = "1.0.100" open = "5.3.3"