actix_tls/lib.rs
1//! TLS acceptor and connector services for the Actix ecosystem.
2
3#![doc(html_logo_url = "https://actix.rs/img/logo.png")]
4#![doc(html_favicon_url = "https://actix.rs/favicon.ico")]
5#![cfg_attr(docsrs, feature(doc_cfg))]
6
7#[cfg(feature = "openssl")]
8#[allow(unused_extern_crates)]
9extern crate tls_openssl as openssl;
10
11#[cfg(feature = "accept")]
12pub mod accept;
13
14#[cfg(feature = "connect")]
15pub mod connect;