2021-11-29 23:53:06 +00:00
|
|
|
//! TLS acceptor and connector services for the Actix ecosystem.
|
2020-09-08 18:00:07 +01:00
|
|
|
|
2020-12-12 23:24:00 +00:00
|
|
|
#![deny(rust_2018_idioms, nonstandard_style)]
|
2021-11-29 23:53:06 +00:00
|
|
|
#![warn(missing_docs)]
|
2020-12-12 23:24:00 +00:00
|
|
|
#![doc(html_logo_url = "https://actix.rs/img/logo.png")]
|
|
|
|
#![doc(html_favicon_url = "https://actix.rs/favicon.ico")]
|
2021-11-29 23:53:06 +00:00
|
|
|
#![cfg_attr(docsrs, feature(doc_cfg))]
|
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")]
|
2021-11-29 23:53:06 +00:00
|
|
|
#[cfg_attr(docsrs, doc(cfg(feature = "accept")))]
|
2020-12-29 00:38:41 +00:00
|
|
|
pub mod accept;
|
2021-11-29 23:53:06 +00:00
|
|
|
|
2020-12-29 00:38:41 +00:00
|
|
|
#[cfg(feature = "connect")]
|
2021-11-29 23:53:06 +00:00
|
|
|
#[cfg_attr(docsrs, doc(cfg(feature = "connect")))]
|
2020-12-29 00:38:41 +00:00
|
|
|
pub mod connect;
|