simplehttp 0.0.6

Simple (and very immature) sync http client. Intended to have multiple implementations abstracting away API differences between platforms
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod simplehttp;

#[cfg(feature = "reqwest")]
pub mod simplehttp_reqwest;

#[cfg(feature = "esp32")]
pub mod simplehttp_esp32;

#[cfg(feature = "spin")]
pub mod simplehttp_spin;

#[cfg(feature = "fastly")]
pub mod simplehttp_fastly;