proxmox/proxmox-http/src/lib.rs
Wolfgang Bumiller 4ccd6256a8 update proxmox-http to 0.5 for the split
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
2021-10-11 12:34:14 +02:00

19 lines
373 B
Rust

//! HTTP related utilities used by various Proxmox products.
#[cfg(feature = "websocket")]
pub mod websocket;
#[cfg(feature = "http-helpers")]
pub mod tls;
#[cfg(feature = "http-helpers")]
pub mod uri;
#[cfg(feature = "http-helpers")]
pub mod proxy_config;
#[cfg(feature = "http-helpers")]
pub use proxy_config::ProxyConfig;
#[cfg(feature = "client")]
pub mod client;