Skip to content

Commit 818748f

Browse files
authored
docs(pool): add module level docs for pools (#248)
1 parent 765bc98 commit 818748f

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ full = [
7777

7878
client = ["hyper/client", "tokio/net", "dep:tracing", "dep:futures-channel", "dep:tower-service"]
7979
client-legacy = ["client", "dep:socket2", "tokio/sync", "dep:libc", "dep:futures-util"]
80-
client-pool = ["dep:futures-util", "dep:tower-layer"]
80+
client-pool = ["client", "dep:futures-util", "dep:tower-layer"]
8181
client-proxy = ["client", "dep:base64", "dep:ipnet", "dep:percent-encoding"]
8282
client-proxy-system = ["dep:system-configuration", "dep:windows-registry"]
8383

src/client/pool/mod.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
//! Composable pool services
2+
//!
3+
//! This module contains various concepts of a connection pool separated into
4+
//! their own concerns. This allows for users to compose the layers, along with
5+
//! any other layers, when constructing custom connection pools.
26
37
pub mod cache;
48
pub mod map;

0 commit comments

Comments
 (0)