compio_tls/lib.rs
1//! Async TLS streams.
2
3#![warn(missing_docs)]
4#![cfg_attr(feature = "read_buf", feature(read_buf, core_io_borrowed_buf))]
5#![cfg_attr(docsrs, feature(doc_cfg))]
6
7#[cfg(feature = "native-tls")]
8pub use native_tls;
9#[cfg(feature = "rustls")]
10pub use rustls;
11
12mod adapter;
13mod maybe;
14mod stream;
15
16pub use adapter::*;
17pub use maybe::*;
18pub use stream::*;