From 18900c1a069df31a441827256f8c88842e178160 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 30 Jan 2025 07:03:28 +0000 Subject: [PATCH] Update nom requirement from ^7.1 to ^8.0 Updates the requirements on [nom](https://github.com/rust-bakery/nom) to permit the latest version. - [Changelog](https://github.com/rust-bakery/nom/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-bakery/nom/compare/7.1.0...8.0.0) --- updated-dependencies: - dependency-name: nom dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.lock | 15 ++++++++++++--- smaf/Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 095424c..e1e0b66 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -156,7 +156,7 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766" dependencies = [ - "nom", + "nom 7.1.3", ] [[package]] @@ -543,13 +543,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", ] @@ -804,7 +813,7 @@ name = "smaf" version = "0.1.0" dependencies = [ "anyhow", - "nom", + "nom 8.0.0", "nom-derive", ] diff --git a/smaf/Cargo.toml b/smaf/Cargo.toml index 675a92d..4fb2aa3 100644 --- a/smaf/Cargo.toml +++ b/smaf/Cargo.toml @@ -5,5 +5,5 @@ edition = "2021" [dependencies] anyhow = { version = "^1.0" } -nom = { version = "^7.1" } +nom = { version = "^8.0" } nom-derive = { version = "^0.10" }