deboa-tokio 0.1.0-beta.6

A friendly rest client on top of hyper.
1
2
3
4
5
6
7
8
9
10
11
12
/// TLS module for runtime-specific TLS implementations.
#[cfg(all(
    any(feature = "rust-tls", feature = "native-tls"),
    any(feature = "http1", feature = "http2")
))]
pub(crate) mod tls;

/// Plain module for runtime-specific plain implementations.
pub(crate) mod plain;

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