From 6cb70f8c76f9dd0ceee453507a2a0e05bb97e52c Mon Sep 17 00:00:00 2001 From: Wojciech Graj Date: Tue, 21 Oct 2025 11:30:27 +0200 Subject: [PATCH] Fix failing docs build The doc_auto_cfg attribute has been renamed to doc_cfg https://github.com/rust-lang/rust/issues/43781 --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 615b5c4..b65c33c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -37,7 +37,7 @@ #![doc( html_logo_url = "https://raw.githubusercontent.com/smol-rs/smol/master/assets/images/logo_fullsize_transparent.png" )] -#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![allow(clippy::unused_unit)] // false positive fixed in Rust 1.89 use std::fmt;