From a086183df56bc62889b1ca50d5dc8cda77dfc385 Mon Sep 17 00:00:00 2001 From: Christoph Jabs Date: Sun, 12 Oct 2025 11:35:18 +0300 Subject: [PATCH] fix(ci): auto cfg in documentation Nightly feature `doc_auto_cfg` is merged into `doc_cfg` rust-lang/rust#138907 --- cadical/src/lib.rs | 1 - src/lib.rs | 1 - 2 files changed, 2 deletions(-) diff --git a/cadical/src/lib.rs b/cadical/src/lib.rs index 3c0c6fe0..89553519 100644 --- a/cadical/src/lib.rs +++ b/cadical/src/lib.rs @@ -60,7 +60,6 @@ //! Older versions are pulled down via the [`git2`](https://crates.io/crates/git2) crate, which has //! transitive dependencies that have a higher MSRV. -#![cfg_attr(docsrs, feature(doc_auto_cfg))] #![cfg_attr(docsrs, feature(doc_cfg))] #![warn(clippy::pedantic)] #![warn(missing_docs)] diff --git a/src/lib.rs b/src/lib.rs index 26e652e2..552f38cb 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -104,7 +104,6 @@ //! Bumps in the MSRV will _not_ be considered breaking changes. If you need a specific MSRV, make //! sure to pin a precise version of RustSAT. -#![cfg_attr(docsrs, feature(doc_auto_cfg))] #![cfg_attr(docsrs, feature(doc_cfg))] #![cfg_attr(feature = "bench", feature(test))] #![warn(clippy::pedantic)]