chuchi 0.1.5

Http async library based on hyper and tokio
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// #![cfg_attr(docsrs, feature(doc_cfg))]
// #![doc = include_str!("../README.md")]

#[doc(hidden)]
#[macro_use]
pub mod util;
pub mod error;
mod request;
pub mod response;
#[cfg(feature = "api-stream")]
#[cfg_attr(docsrs, doc(cfg(feature = "feature")))]
pub mod stream;
#[cfg(any(test, feature = "testing"))]
pub mod testing;

pub use error::ApiError;
pub use request::{Method, Request};