This is an automated email from the ASF dual-hosted git repository.
tustvold pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-rs-object-store.git
The following commit(s) were added to refs/heads/main by this push:
new 65ad88b Remove dev dependency on openssl (#577)
65ad88b is described below
commit 65ad88b46e8fc1cd024ce5df0e8f5eb947b0c9b8
Author: Raphael Taylor-Davies <[email protected]>
AuthorDate: Sat Dec 13 16:56:26 2025 +0000
Remove dev dependency on openssl (#577)
---
Cargo.toml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Cargo.toml b/Cargo.toml
index 1bc8bd1..0f0db24 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -87,7 +87,7 @@ rand = "0.9"
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"] }
+reqwest = { version = "0.12", default-features = false, features = ["gzip"] }
[target.'cfg(all(target_arch = "wasm32", target_os =
"unknown"))'.dev-dependencies]
wasm-bindgen-test = "0.3.50"