mirror of
https://github.com/fafhrd91/actix-net
synced 2025-02-12 11:05:32 +01:00
18 lines
503 B
Rust
18 lines
503 B
Rust
//! TLS acceptor and connector services for the Actix ecosystem.
|
|
|
|
#![deny(rust_2018_idioms, nonstandard_style)]
|
|
#![warn(future_incompatible, missing_docs)]
|
|
#![doc(html_logo_url = "https://actix.rs/img/logo.png")]
|
|
#![doc(html_favicon_url = "https://actix.rs/favicon.ico")]
|
|
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
|
|
|
|
#[cfg(feature = "openssl")]
|
|
#[allow(unused_extern_crates)]
|
|
extern crate tls_openssl as openssl;
|
|
|
|
#[cfg(feature = "accept")]
|
|
pub mod accept;
|
|
|
|
#[cfg(feature = "connect")]
|
|
pub mod connect;
|