From 52c8dfed56a8bd11ebaf2e7a388a9b13a071afc0 Mon Sep 17 00:00:00 2001 From: Marli Frost Date: Wed, 8 Jul 2020 12:38:32 +0100 Subject: [PATCH 1/2] chore: pin the flate2 version for now --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index f88db0e0..e5f455d6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ Library to support the reading and writing of zip files. edition = "2018" [dependencies] -flate2 = { version = "1.0", default-features = false, optional = true } +flate2 = { version = ">=1.0.0, <=1.0.14", default-features = false, optional = true } time = { version = "0.1", optional = true } byteorder = "1.3" bzip2 = { version = "0.3", optional = true } From 2963addaaa9ee11bebfc99513a42a7b108d499af Mon Sep 17 00:00:00 2001 From: Plecra Date: Fri, 10 Jul 2020 11:36:49 +0100 Subject: [PATCH 2/2] docs: Explain version limits --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index e5f455d6..bcbd6e37 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,6 +13,7 @@ Library to support the reading and writing of zip files. edition = "2018" [dependencies] +# FIXME(#170): flate2 1.0.15 has an MSRV of 1.36.0, breaking ours. We'll update when we know if this will be addressed flate2 = { version = ">=1.0.0, <=1.0.14", default-features = false, optional = true } time = { version = "0.1", optional = true } byteorder = "1.3"