From 1fa97073174005bb6dab53e3af2a28b1de11a646 Mon Sep 17 00:00:00 2001 From: link2xt Date: Sat, 15 Mar 2025 08:25:17 +0000 Subject: [PATCH] fix: update async-compression to 0.4.21 to fix IMAP COMPRESS getting stuck async-compression 0.4.21 fixes a bug in the encoder where it did not flush all the internal state sometimes, resulting in IMAP APPEND command timing out waiting for response when uploading large sync messages. See for details. --- Cargo.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 453adb84c..2e9ab246b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -283,9 +283,9 @@ dependencies = [ [[package]] name = "async-compression" -version = "0.4.18" +version = "0.4.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df895a515f70646414f4b45c0b79082783b80552b373a68283012928df56f522" +checksum = "c0cf008e5e1a9e9e22a7d3c9a4992e21a350290069e36d8fb72304ed17e8f2d2" dependencies = [ "flate2", "futures-core",