From 26672900d527f630df16e653523c9b2823d111ce Mon Sep 17 00:00:00 2001 From: link2xt Date: Mon, 10 Mar 2025 23:05:20 +0000 Subject: [PATCH] fix: update async-imap to 0.10.23 to fix division by zero --- Cargo.lock | 6 +++--- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 21f869c27..a38262003 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -297,9 +297,9 @@ dependencies = [ [[package]] name = "async-imap" -version = "0.10.2" +version = "0.10.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5488cd022c3c7bc41a9b34a540d9ac0d9c5cd42fdb106a67616521b7592d5b4e" +checksum = "932fcbfc3b9e93f73022bf70446cfd9fe540ba62779944d5363797ff7009cb16" dependencies = [ "async-channel 2.3.1", "async-compression", @@ -4174,7 +4174,7 @@ dependencies = [ "aes-gcm", "aes-kw", "argon2", - "base64 0.21.7", + "base64 0.22.1", "bitfield", "block-padding", "blowfish", diff --git a/Cargo.toml b/Cargo.toml index b3e9c4ac2..8198db886 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,7 +41,7 @@ ratelimit = { path = "./deltachat-ratelimit" } anyhow = { workspace = true } async-broadcast = "0.7.2" async-channel = { workspace = true } -async-imap = { version = "0.10.2", default-features = false, features = ["runtime-tokio", "compress"] } +async-imap = { version = "0.10.3", default-features = false, features = ["runtime-tokio", "compress"] } async-native-tls = { version = "0.5", default-features = false, features = ["runtime-tokio"] } async-smtp = { version = "0.10", default-features = false, features = ["runtime-tokio"] } async_zip = { version = "0.0.17", default-features = false, features = ["deflate", "tokio-fs"] }