http-client 1.1.1

Types and traits for http clients.
Documentation
//! http-client implementation for curl + fetch

#[cfg(all(feature = "curl_client", not(target_arch = "wasm32")))]
pub use super::isahc::IsahcClient as NativeClient;

#[cfg(all(feature = "wasm-client", target_arch = "wasm32"))]
pub use super::wasm::WasmClient as NativeClient;