This is an automated email from the ASF dual-hosted git repository.

alamb 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 1d5ad19  refactor!: remove `cloud` feature alias (#751)
1d5ad19 is described below

commit 1d5ad198527725f10093b311f8884e04e64c8cd6
Author: Kevin Liu <[email protected]>
AuthorDate: Mon Jun 15 13:59:23 2026 -0400

    refactor!: remove `cloud` feature alias (#751)
---
 Cargo.toml | 5 -----
 src/lib.rs | 1 -
 2 files changed, 6 deletions(-)

diff --git a/Cargo.toml b/Cargo.toml
index ddb4336..70852d4 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -90,11 +90,6 @@ cloud-base = ["serde", "serde_json", "quick-xml", "hyper", 
"chrono/serde", "base
 # Built-in reqwest-based HTTP transport.
 reqwest = ["dep:reqwest", "reqwest/stream"]
 
-# Compatibility/convenience alias.
-# Historically, cloud meant "common cloud support", including reqwest.
-# Keep that behavior for existing users.
-cloud = ["cloud-base", "reqwest"]
-
 # Provider base features.
 # These compile provider logic without forcing reqwest.
 azure-base = ["cloud-base", "httparse"]
diff --git a/src/lib.rs b/src/lib.rs
index b2b199e..48bf994 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -554,7 +554,6 @@
 //! | `reqwest` | Enables the default [`reqwest`]-based [`HttpConnector`]. 
Pulled in automatically by `aws`, `azure`, `gcp`, and `http`. |
 //! | `tls-webpki-roots` | When `reqwest` is enabled, also bundle Mozilla's 
[`webpki-roots`] CA certificates. See [TLS Certificates](#tls-certificates). |
 //! | `cloud-base` | Shared cloud-provider implementation. Pulled in 
automatically by every `*-base` feature; usually not enabled directly. |
-//! | `cloud` | Back-compat alias for `cloud-base` + `reqwest`. Kept for users 
that previously depended on the `cloud` umbrella feature. |
 //!
 //! ## Other features
 //!

Reply via email to