reqwest-cross 0.10.0

Wrapper around reqwest for use in both native and wasm
Documentation
//! Provides an easy way for calling functions to reuse bounds of public
//! functions except [spawn][crate::spawn] for which I couldn't foresee the use
//! case. If you have a use case reach out, don't mind adding it if it adds
//! value. All these traits come with automatic impls so they are automatically
//! implemented for any function that meets the bounds functions that are
//! conditionally compiled by target
// Unable to actually include this text for docs.rs because when this module is

// public the traits it includes do not show up as Traits at the top level of
// the crate.

#[cfg(not(target_arch = "wasm32"))]
mod native;
#[cfg(target_arch = "wasm32")]
mod wasm;

#[cfg(not(target_arch = "wasm32"))]
pub use native::*;
#[cfg(target_arch = "wasm32")]
pub use wasm::*;