From e2f8c2ece772f952aedc56e33e56ced0f074461b Mon Sep 17 00:00:00 2001 From: Phillip LeBlanc Date: Wed, 11 Dec 2024 16:58:21 +0900 Subject: [PATCH] Add comment explaining why gzip feature is enabled --- object_store/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/object_store/Cargo.toml b/object_store/Cargo.toml index e147e53b1d17..bcc8e0b92243 100644 --- a/object_store/Cargo.toml +++ b/object_store/Cargo.toml @@ -77,6 +77,7 @@ http-body-util = "0.1" rand = "0.8" tempfile = "3.1.0" regex = "1.11.1" +# The "gzip" feature for reqwest is enabled for an integration test. reqwest = { version = "0.12", features = ["gzip"] } http = "1.1.0"