]> git.proxmox.com Git - proxmox.git/blob - proxmox-http/src/client/mod.rs
5ef81000ba3ed8cb2299233e40f419ea69a45bcb
[proxmox.git] / proxmox-http / src / client / mod.rs
1 //! Simple TLS capable HTTP client implementation.
2 //!
3 //! Contains a lightweight wrapper around `hyper` with support for TLS connections.
4
5 mod rate_limiter;
6 pub use rate_limiter::{RateLimit, RateLimiter};
7
8 mod rate_limited_stream;
9 pub use rate_limited_stream::RateLimitedStream;
10
11 mod connector;
12 pub use connector::HttpsConnector;
13
14 mod simple;
15 pub use simple::SimpleHttp;
16 pub use simple::SimpleHttpOptions;