diff --git a/CHANGELOG.md b/CHANGELOG.md index a18d62d..8e4c8df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,8 @@ and this project adheres to `request::Error`) instead of wrapping it in a crate-specific error type. - Refactored `ExecuteRequestFuture` in `tower-reqwest` to remove unnecessary double pinning, simplifying the internal structure. +- Remove `doc_auto_cfg` attribute + [PR](https://github.com/rust-lang/rust/pull/138907). ## [0.5.3] - 2025.09.23 diff --git a/tower-http-client/src/lib.rs b/tower-http-client/src/lib.rs index 57720b5..4f34b7c 100644 --- a/tower-http-client/src/lib.rs +++ b/tower-http-client/src/lib.rs @@ -1,4 +1,4 @@ -#![cfg_attr(docsrs, feature(doc_auto_cfg, doc_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs)] //! # Overview diff --git a/tower-reqwest/src/lib.rs b/tower-reqwest/src/lib.rs index 6f09a24..f10b924 100644 --- a/tower-reqwest/src/lib.rs +++ b/tower-reqwest/src/lib.rs @@ -1,4 +1,4 @@ -#![cfg_attr(docsrs, feature(doc_auto_cfg, doc_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] //! # Overview //!