Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion tower-http-client/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![cfg_attr(docsrs, feature(doc_auto_cfg, doc_cfg))]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![warn(missing_docs)]

//! # Overview
Expand Down
2 changes: 1 addition & 1 deletion tower-reqwest/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![cfg_attr(docsrs, feature(doc_auto_cfg, doc_cfg))]
#![cfg_attr(docsrs, feature(doc_cfg))]

//! # Overview
//!
Expand Down