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

mneumann 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 5cb565b  fix: `docs.rs` build failure (#591)
5cb565b is described below

commit 5cb565b2fdf3200c74e1f1322badc60dd42f6730
Author: Marco Neumann <[email protected]>
AuthorDate: Mon Jan 5 09:57:39 2026 -0600

    fix: `docs.rs` build failure (#591)
    
    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: Andrew Lamb <[email protected]>
---
 src/lib.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib.rs b/src/lib.rs
index 5ad9d32..b22c6c4 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