From 42795eb02d1a9074b2bffa67d2c18a8d0175cfa1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Jan 2025 04:52:11 +0000 Subject: [PATCH] Update nom requirement from 7 to 8 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.0.0...8.0.0) --- updated-dependencies: - dependency-name: nom dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- imap-proto/Cargo.toml | 2 +- tokio-imap/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/imap-proto/Cargo.toml b/imap-proto/Cargo.toml index 87ed547..7ac0e8c 100644 --- a/imap-proto/Cargo.toml +++ b/imap-proto/Cargo.toml @@ -16,7 +16,7 @@ readme = "../README.md" maintenance = { status = "passively-maintained" } [dependencies] -nom = "7" +nom = "8" [dev-dependencies] assert_matches = "1.3" diff --git a/tokio-imap/Cargo.toml b/tokio-imap/Cargo.toml index 20a8a7f..f0288d6 100644 --- a/tokio-imap/Cargo.toml +++ b/tokio-imap/Cargo.toml @@ -20,7 +20,7 @@ bytes = "1" futures-util = "0.3.8" futures-sink = "0.3.8" imap-proto = { version = "0.16", path = "../imap-proto" } -nom = "7" +nom = "8" pin-project = "1" rustls-pki-types = "1" tokio = { version = "1", features = ["net"] }