deboa-smol 0.1.0-beta.6

A friendly rest client on top of hyper.
1
2
3
4
5
6
7
8
9
10
pub(crate) mod plain;

#[cfg(all(
    any(feature = "rust-tls", feature = "native-tls"),
    any(feature = "http1", feature = "http2")
))]
pub(crate) mod tls;

pub(crate) use plain::*;
pub(crate) use tls::*;