From 52855176b37111f7589645f9bed99020b018cf4c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 5 Jun 2026 11:59:35 +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-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 b590637..eb0e13d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -89,7 +89,7 @@ name = "classfile" version = "0.0.1" dependencies = [ "java_constants", - "nom", + "nom 8.0.0", "nom-derive", ] @@ -365,7 +365,7 @@ dependencies = [ "event-listener", "hashbrown", "java_constants", - "nom", + "nom 8.0.0", "parking_lot", "test_utils", "tokio", @@ -462,13 +462,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-derive" version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1ff943d68b88d0b87a6e0d58615e8fa07f9fd5a1319fa0a72efc1f62275c79a7" dependencies = [ - "nom", + "nom 7.1.3", "nom-derive-impl", "rustversion", ] diff --git a/Cargo.toml b/Cargo.toml index f63ef6d..1b7f75c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ bytemuck = { version = "^1.25", default-features = false, features = ["extern_cr dyn-clone = { version = "^1.0", default-features = false } dyn-hash = { version = "^1.0", default-features = false } hashbrown = { version = "^0.17", features = ["default-hasher"], default-features = false } -nom = { version = "^7.1", default-features = false, features = ["alloc"] } +nom = { version = "^8.0", default-features = false, features = ["alloc"] } parking_lot = { version = "^0.12", default-features = false } tracing = { version = "^0.1", default-features = false, features = ["attributes"] }