From da4b2f0cfb9107653071e3a4a16fc5dd502aa53d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Jan 2025 16:24:23 +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 +++++++++++-- Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 27037db..782376f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -224,7 +224,7 @@ dependencies = [ "lazy_static", "log", "mdbook", - "nom", + "nom 8.0.0", "parse-hyperlinks", "semver", "serde", @@ -1038,6 +1038,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 = "normpath" version = "1.2.0" @@ -1153,7 +1162,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "92ac700657cc7a89620d1c28b310d594ff0491c11fd3dd1ae748ed5c5c8640e6" dependencies = [ "html-escape", - "nom", + "nom 7.1.3", "percent-encoding", "thiserror", ] diff --git a/Cargo.toml b/Cargo.toml index 1549c3c..6b4429e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ html-escape = "0.2.13" lazy_static = "1.4.0" log = { version = "0.4.22", features = ["std"] } mdbook = { version = "0.4.40" } -nom = { version = "7.1.3", features = ["alloc"] } +nom = { version = "8.0.0", features = ["alloc"] } parse-hyperlinks = "0.27.2" semver = { version = "1.0.23" } serde = { version = "1.0.202", features = ["derive"] }