mirror of
https://git.proxmox.com/git/proxmox
synced 2025-10-12 11:47:42 +00:00
17 lines
394 B
Rust
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;
|