From df995c38279227ab8ac13ead1b8c238d190cdbfa Mon Sep 17 00:00:00 2001 From: glendc Date: Fri, 22 Dec 2023 22:34:37 +0100 Subject: [PATCH 1/2] replace client link in docs fixes issue #3453 --- src/client/conn/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/client/conn/mod.rs b/src/client/conn/mod.rs index eda436a8b8..f2942ecfc2 100644 --- a/src/client/conn/mod.rs +++ b/src/client/conn/mod.rs @@ -5,8 +5,8 @@ //! are not handled at this level. This module provides the building blocks to //! customize those things externally. //! -//! If don't have need to manage connections yourself, consider using the -//! higher-level [Client](super) API. +//! If you are looking for a convenient HTTP client, +//! then you may wish to consider [reqwest](https://github.com/seanmonstar/reqwest). //! //! ## Example //! From b4a99ff4b94d23151e4a8c0138ed81ee4f3883c5 Mon Sep 17 00:00:00 2001 From: Glen De Cauwsemaecker Date: Tue, 5 Mar 2024 13:17:59 +0100 Subject: [PATCH 2/2] Update src/client/conn/mod.rs --- src/client/conn/mod.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/client/conn/mod.rs b/src/client/conn/mod.rs index f2942ecfc2..9e68aa6d00 100644 --- a/src/client/conn/mod.rs +++ b/src/client/conn/mod.rs @@ -6,7 +6,9 @@ //! customize those things externally. //! //! If you are looking for a convenient HTTP client, -//! then you may wish to consider [reqwest](https://github.com/seanmonstar/reqwest). +//! then you may wish to consider [reqwest](https://github.com/seanmonstar/reqwest) +//! for a high level client or [`hyper-util`'s client](https://docs.rs/hyper-util/latest/hyper_util/client/index.html) +//! if you want to keep it more low level / basic. //! //! ## Example //!