2020-12-29 00:38:41 +00:00
|
|
|
//! TLS acceptor and connector services for Actix ecosystem
|
2020-09-08 18:00:07 +01:00
|
|
|
|
2020-12-12 23:24:00 +00:00
|
|
|
#![deny(rust_2018_idioms, nonstandard_style)]
|
|
|
|
#![doc(html_logo_url = "https://actix.rs/img/logo.png")]
|
|
|
|
#![doc(html_favicon_url = "https://actix.rs/favicon.ico")]
|
2019-12-02 22:30:09 +06:00
|
|
|
|
2019-12-02 11:30:27 +06:00
|
|
|
#[cfg(feature = "openssl")]
|
2021-10-11 09:58:11 +08:00
|
|
|
#[allow(unused_extern_crates)]
|
2020-12-29 00:38:41 +00:00
|
|
|
extern crate tls_openssl as openssl;
|
2020-09-08 18:00:07 +01:00
|
|
|
|
2020-12-29 00:38:41 +00:00
|
|
|
#[cfg(feature = "accept")]
|
|
|
|
pub mod accept;
|
|
|
|
#[cfg(feature = "connect")]
|
|
|
|
pub mod connect;
|