From de3f84b8a84793c8cc2b2603cede2ef344540b34 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jul 2024 17:42:13 +0000 Subject: [PATCH] build(deps): bump tokio from 1.39.1 to 1.39.2 Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.39.1 to 1.39.2. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.39.1...tokio-1.39.2) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- integration-test/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 17cdd7f..36c0848 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -863,9 +863,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.39.1" +version = "1.39.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d040ac2b29ab03b09d4129c2f5bbd012a3ac2f79d38ff506a4bf8dd34b0eac8a" +checksum = "daa4fb1bc778bd6f04cbfc4bb2d06a7396a8f299dc33ea1900cedaa316f467b1" dependencies = [ "backtrace", "bytes", diff --git a/Cargo.toml b/Cargo.toml index 46fec3b..c488bd5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,7 +34,7 @@ bytes = { version = "1.6.1", optional = true } imap-codec = { version = "2.0.0-alpha.4", features = ["quirk_crlf_relaxed"] } rustls = { version = "0.23.12", optional = true } thiserror = "1.0.63" -tokio = { version = "1.39.1", optional = true, features = ["io-util", "macros", "net"] } +tokio = { version = "1.39.2", optional = true, features = ["io-util", "macros", "net"] } tokio-rustls = { version = "0.26.0", optional = true } tracing = "0.1.40" @@ -43,7 +43,7 @@ tracing = "0.1.40" imap-next = { path = ".", features = ["tag_generator"] } rand = "0.8.5" -tokio = { version = "1.39.1", features = ["full"] } +tokio = { version = "1.39.2", features = ["full"] } [workspace] resolver = "2" diff --git a/integration-test/Cargo.toml b/integration-test/Cargo.toml index 8c3d959..2b4857b 100644 --- a/integration-test/Cargo.toml +++ b/integration-test/Cargo.toml @@ -10,7 +10,7 @@ bstr = { version = "1.9.1", default-features = false } bytes = "1.6.1" imap-codec = { version = "2.0.0-alpha.4" } imap-next = { path = ".." } -tokio = { version = "1.39.1", features = ["macros", "net", "rt", "time"] } +tokio = { version = "1.39.2", features = ["macros", "net", "rt", "time"] } tracing = "0.1.40" tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }