openwire 0.1.1

OkHttp-inspired async HTTP client for Rust built on hyper and tower
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod bindings;
mod body;
mod connect;
pub(crate) mod protocol;
mod service;

pub(crate) use connect::ConnectorStack;
#[cfg(feature = "websocket")]
pub(crate) use connect::{connect_route_plan, ProxyConnectDeps};
pub(crate) use service::{
    CoalescedConnectionRetryable, NoCoalescedConnections, TransportService, TransportServiceInit,
};

#[cfg(test)]
mod tests;