From ff712bc63d70313509c184fa5816bb3a2f35b80f Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Tue, 2 Dec 2025 14:36:59 -0500 Subject: [PATCH] docs(pool): add module level docs for pools --- Cargo.toml | 2 +- src/client/pool/mod.rs | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 525b15ee..7bf208df 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -77,7 +77,7 @@ full = [ client = ["hyper/client", "tokio/net", "dep:tracing", "dep:futures-channel", "dep:tower-service"] client-legacy = ["client", "dep:socket2", "tokio/sync", "dep:libc", "dep:futures-util"] -client-pool = ["dep:futures-util", "dep:tower-layer"] +client-pool = ["client", "dep:futures-util", "dep:tower-layer"] client-proxy = ["client", "dep:base64", "dep:ipnet", "dep:percent-encoding"] client-proxy-system = ["dep:system-configuration", "dep:windows-registry"] diff --git a/src/client/pool/mod.rs b/src/client/pool/mod.rs index 9f1a8fce..fd505416 100644 --- a/src/client/pool/mod.rs +++ b/src/client/pool/mod.rs @@ -1,4 +1,8 @@ //! Composable pool services +//! +//! This module contains various concepts of a connection pool separated into +//! their own concerns. This allows for users to compose the layers, along with +//! any other layers, when constructing custom connection pools. pub mod cache; pub mod map;