From e0938387ab85156b63d34249aaa56eae2d297736 Mon Sep 17 00:00:00 2001 From: Elias Rohrer Date: Wed, 19 Nov 2025 21:55:14 +0100 Subject: [PATCH] Replace docs.rs build `doc_auto_cfg` feature with `doc_cfg` Unfortunately, `doc_auto_cfg` was removed, breaking doc builds for v0.7.0-rc.0. Here we replace it with the `doc_cfg` attribute. --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 8ac6780ed..c0b02ae2f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -75,7 +75,7 @@ #![deny(rustdoc::private_intra_doc_links)] #![allow(bare_trait_objects)] #![allow(ellipsis_inclusive_range_patterns)] -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] mod balance; mod builder;