From 3e971e79603f65d7e78cf398a7e90eaba66fcf66 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Jan 2025 09:12:26 +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 | 15 ++++++++++++--- Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8448932..2df3023 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -415,7 +415,7 @@ dependencies = [ "lazy_static", "lettre", "native-tls", - "nom", + "nom 8.0.0", "openssl", "openssl-macros", "ouroboros", @@ -429,7 +429,7 @@ version = "0.16.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "22e70cd66882c8cb1c9802096ba75212822153c51478dc61621e1a22f6c92361" dependencies = [ - "nom", + "nom 7.1.3", ] [[package]] @@ -464,7 +464,7 @@ dependencies = [ "idna", "mime", "native-tls", - "nom", + "nom 7.1.3", "percent-encoding", "quoted_printable", "socket2", @@ -562,6 +562,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 = "num-traits" version = "0.2.18" diff --git a/Cargo.toml b/Cargo.toml index d8dbc4d..c1b5851 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ rustls-connector = { version = "0.19.0", optional = true } regex = "1.0" bufstream = "0.1.3" imap-proto = "0.16.1" -nom = { version = "7.1.0", default-features = false } +nom = { version = "8.0.0", default-features = false } base64 = "0.22" chrono = { version = "0.4.37", default-features = false, features = ["std"]} lazy_static = "1.4"