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

alamb pushed a commit to branch release/0.12
in repository https://gitbox.apache.org/repos/asf/arrow-rs-object-store.git


The following commit(s) were added to refs/heads/release/0.12 by this push:
     new cb0b3a6  fix: `docs.rs` build failure (#591) (#600)
cb0b3a6 is described below

commit cb0b3a6bccb0974ef3c99a07dbaeaa723717b20d
Author: Andrew Lamb <[email protected]>
AuthorDate: Fri Jan 9 13:35:34 2026 -0500

    fix: `docs.rs` build failure (#591) (#600)
    
    See https://docs.rs/crate/object_store/latest/builds/2752265 :
    
    ```text
    [INFO] [stderr]  Documenting object_store v0.13.0 (/opt/rustwide/workdir)
    [INFO] [stderr] error[E0557]: feature has been removed
    [INFO] [stderr]   --> src/lib.rs:18:29
    [INFO] [stderr]    |
    [INFO] [stderr] 18 | #![cfg_attr(docsrs, feature(doc_auto_cfg))]
    [INFO] [stderr]    |                             ^^^^^^^^^^^^ feature has 
been removed
    [INFO] [stderr]    |
    [INFO] [stderr]    = note: removed in 1.92.0; see 
<https://github.com/rust-lang/rust/pull/138907> for more information
    [INFO] [stderr]    = note: merged into `doc_cfg`
    [INFO] [stderr]
    [INFO] [stderr] error: Compilation failed, aborting rustdoc
    [INFO] [stderr]
    [INFO] [stderr] For more information about this error, try `rustc --explain 
E0557`.
    [INFO] [stderr] error: could not document `object_store`
    ```
    
    Co-authored-by: Marco Neumann <[email protected]>
---
 src/lib.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib.rs b/src/lib.rs
index bb9f8b1..53c3ade 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-#![cfg_attr(docsrs, feature(doc_auto_cfg))]
+#![cfg_attr(docsrs, feature(doc_cfg))]
 #![deny(rustdoc::broken_intra_doc_links, rustdoc::bare_urls, rust_2018_idioms)]
 #![warn(
     missing_copy_implementations,

Reply via email to