simplist 0.0.5

plain and simple http, for when you just want to make a darn request! supports tokio-based async, traditional sync and async-await models.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod client;
mod content;
mod error;
mod method;
mod request;
mod response;
mod url;

pub use self::client::*;
pub use self::content::*;
pub use self::error::*;
pub use self::method::*;
pub use self::request::*;
pub use self::response::*;
pub use self::url::*;