From 5583553185688992e66cf1e734e4072cba98fe83 Mon Sep 17 00:00:00 2001 From: Nicholas Bishop Date: Mon, 3 Nov 2025 13:35:45 -0500 Subject: [PATCH] Replace doc_auto_cfg with doc_cfg The `doc_auto_cfg` feature has been subsumed by `doc_cfg`: https://github.com/rust-lang/rust/pull/138907 --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 9b16c801..470f6c45 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -94,7 +94,7 @@ //! [issues]: https://github.com/nicholasbishop/ext4-view-rs/issues #![cfg_attr(not(any(feature = "std", test)), no_std)] -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![forbid(unsafe_code)] #![warn( clippy::arithmetic_side_effects,