From f205d0efbbfcc35e91b331cc3b4d4672ed56ecd8 Mon Sep 17 00:00:00 2001 From: qj <60492138+qrnch-jan@users.noreply.github.com> Date: Sun, 5 Oct 2025 22:13:30 +0200 Subject: [PATCH] Use `doc_cfg` in place of removed `doc_auto_cfg` feature (#91) --- keccak/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keccak/src/lib.rs b/keccak/src/lib.rs index 1f15516..14cbb3d 100644 --- a/keccak/src/lib.rs +++ b/keccak/src/lib.rs @@ -37,7 +37,7 @@ //! [2]: https://docs.rs/tiny-keccak #![no_std] -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![cfg_attr(feature = "simd", feature(portable_simd))] #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",