From 6eeb762908c4bb6335473cdec3d7ccddb78eb552 Mon Sep 17 00:00:00 2001 From: Nicholas Bishop Date: Mon, 3 Nov 2025 13:23:01 -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 --- sbat/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbat/src/lib.rs b/sbat/src/lib.rs index 2bdb9c8..4859f72 100644 --- a/sbat/src/lib.rs +++ b/sbat/src/lib.rs @@ -60,7 +60,7 @@ #![allow(clippy::enum_glob_use)] #![allow(clippy::missing_errors_doc)] #![allow(clippy::module_name_repetitions)] -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] // Allow using `std` if the `std` feature is enabled, or when running // tests. Otherwise enable `no_std`. #![cfg_attr(all(not(feature = "std"), not(test)), no_std)]