pavex 0.2.10

A framework for building API services and web applications in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Secure your client connections with TLS (Transport Layer Security).
//!
//! Check out the documentation for [`TlsClientPolicyConfig`] for
//! a detailed explanation of the available configuration options.
pub mod config;
pub use config::_config::TlsClientPolicyConfig;

#[cfg(feature = "rustls_0_23")]
#[cfg_attr(docsrs, doc(cfg(feature = "rustls_0_23")))]
mod rustls_0_23;