proxmox/proxmox-http/src/client/mod.rs
Dietmar Maurer c94ad247b1 Implement a rate limiting stream (AsyncRead, AsyncWrite)
Signed-off-by: Dietmar Maurer <dietmar@proxmox.com>
2021-11-10 09:51:08 +01:00

17 lines
394 B
Rust

//! Simple TLS capable HTTP client implementation.
//!
//! Contains a lightweight wrapper around `hyper` with support for TLS connections.
mod rate_limiter;
pub use rate_limiter::RateLimiter;
mod rate_limited_stream;
pub use rate_limited_stream::RateLimitedStream;
mod connector;
pub use connector::HttpsConnector;
mod simple;
pub use simple::SimpleHttp;
pub use simple::SimpleHttpOptions;