deboa-compio 0.1.0

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

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