deboa 0.1.0-beta.4

A friendly rest client on top of hyper.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub(crate) const SKIP_CERT_VERIFICATION: bool =
    cfg!(any(feature = "tokio-native-tls", feature = "smol-native-tls"));

pub(crate) type TestResult<T> = std::result::Result<T, Box<dyn std::error::Error>>;

mod cache;
//mod catcher;
mod cert;
mod client;
mod cookie;
mod form;
mod integrated;
mod request;
mod response;
mod url;

mod helpers;