1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-02-07 17:04:23 +01:00

15 lines
409 B
Rust
Raw Normal View History

//! TLS acceptor and connector services for Actix ecosystem
2020-09-08 18:00:07 +01: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
#[cfg(feature = "openssl")]
#[allow(unused_extern_crates)]
extern crate tls_openssl as openssl;
2020-09-08 18:00:07 +01:00
#[cfg(feature = "accept")]
pub mod accept;
#[cfg(feature = "connect")]
pub mod connect;