From 795f98416f64e566532d80500eaf4736ef94d02c Mon Sep 17 00:00:00 2001 From: Lev Veyde Date: Sun, 3 Sep 2023 00:58:36 +0300 Subject: [PATCH] Update Cargo.toml Usage of zlib backend for flate2 causes a compilation failure. One should use a rust_backend instead. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index f7a31e8b..d0dd0985 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ categories = ["asynchronous", "database"] [dependencies] bytes = "1.0" crossbeam = "0.8.1" -flate2 = { version = "1.0", features = ["zlib"], default-features = false } +flate2 = { version = "1.0", features = ["rust_backend"], default-features = false } futures-core = "0.3" futures-util = "0.3" futures-sink = "0.3"