nightfly 0.1.6

higher level HTTP client library for the lunatic runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub use self::body::Body;
pub use self::client::{Client, ClientBuilder, InnerClient};
pub use self::request::{Request, RequestBuilder};
pub use self::response::{HttpResponse, SerializableResponse};
// pub use self::upgrade::Upgraded;

pub mod body;
pub mod client;
pub mod decoder;
mod http_stream;
// #[cfg(feature = "multipart")]
// pub mod multipart;
pub(crate) mod request;
mod response;
// mod upgrade;