reqwest 0.8.8

higher level HTTP client library
1
2
3
4
5
6
7
8
9
10
11
12
13
#![cfg_attr(not(features = "unstable"), allow(unused))]

pub use self::body::{Body, Chunk};
pub use self::decoder::{Decoder, ReadableChunks};
pub use self::client::{Client, ClientBuilder};
pub use self::request::{Request, RequestBuilder};
pub use self::response::Response;

pub mod body;
pub mod client;
pub mod decoder;
mod request;
mod response;