//! Pooled client support built on per-socket `bb8` pools.
//!
//! Each pool slot owns one physical socket managed by `bb8`. Wireframe layers
//! admission permits across those slots so multiple callers can target the
//! same warm socket while transport access remains serialized per socket.
pub use WireframeClientPool;
pub use ClientPoolConfig;
pub use PoolHandle;
pub use PooledClientLease;
pub use PoolFairnessPolicy;