From a442b1d4250367273f39e50ef25e539593b43ce0 Mon Sep 17 00:00:00 2001 From: ZihanType Date: Sun, 30 Nov 2025 01:38:25 +0800 Subject: [PATCH] replace `doc_auto_cfg` to `doc_cfg` --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index aa020c0..161c73f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -6,7 +6,7 @@ //! It also adds the [`assert_tokens!`] and [`assert_expansion!`] macros to //! improve unit testability for `proc-macros`. #![warn(clippy::pedantic, missing_docs)] -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![deny(rustdoc::all)] #[cfg(all(doc, feature = "proc-macro2"))]