From 75516ee76aecf9b24ef2ca264ef40a1e733d6492 Mon Sep 17 00:00:00 2001 From: Nicholas Bishop Date: Mon, 3 Nov 2025 13:27:15 -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 --- authenticode/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authenticode/src/lib.rs b/authenticode/src/lib.rs index 9f19593..34f032f 100644 --- a/authenticode/src/lib.rs +++ b/authenticode/src/lib.rs @@ -25,7 +25,7 @@ //! [`std::error::Error`]: https://doc.rust-lang.org/std/error/trait.Error.html #![forbid(unsafe_code)] -#![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)]