From 68e431427ccb5e12695b49afbf942b66de3ef72d Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Fri, 10 Oct 2025 22:34:00 +0000 Subject: [PATCH] Drop now-removed `doc_auto_cfg` feature It seems new rustc removed this feature, hopefully its available upstream but either way it caused the 0.1.6 docs.rs build to fail. --- lightning/src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/lightning/src/lib.rs b/lightning/src/lib.rs index 4e9d105df5f..6755dfad4ef 100644 --- a/lightning/src/lib.rs +++ b/lightning/src/lib.rs @@ -37,7 +37,6 @@ // that don't do anything but annoy us and cant actually ever be resolved. #![allow(bare_trait_objects)] #![allow(ellipsis_inclusive_range_patterns)] -#![cfg_attr(docsrs, feature(doc_auto_cfg))] #![cfg_attr(all(not(feature = "std"), not(test)), no_std)] #[cfg(all(fuzzing, test))]