From 39c88567b511e47fe38c0552cfdfde1860afa6af Mon Sep 17 00:00:00 2001 From: gered Date: Sat, 11 Nov 2023 17:59:41 -0500 Subject: [PATCH] downgrade to flate2 v1.0.27 due to performance issues dev/test builds that heavily use deflate (e.g. anything with png files) perform *incredibly* slow with 1.0.28. also tried switching the backend to zlib which didn't really speed things up too much. i hate updating dependencies. *sigh* --- ggdt/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ggdt/Cargo.toml b/ggdt/Cargo.toml index 2509c2a..65a00bc 100644 --- a/ggdt/Cargo.toml +++ b/ggdt/Cargo.toml @@ -14,7 +14,7 @@ num = "0.4.1" num-derive = "0.4.1" num-traits = "0.2.17" bitflags = "2.4.1" -flate2 = "1.0.28" +flate2 = "=1.0.27" crc32fast = "1.3.2" serde = { version = "1.0.192", features = ["derive"] } serde_json = "1.0.108"