//! Security-first, dependency-free `no_std` TLS facade.
//!
//! This release hardens package isolation and release integrity. It does not
//! yet provide a TLS connection API.
/// Whether this package provides its planned implementation.
///
/// The release-and-isolation milestone intentionally reports `false`.
pub const IMPLEMENTED: bool = false;
pub use brynja_core as core;
pub use brynja_crypto as crypto;
pub use brynja_pki as pki;
pub use brynja_tls as tls;
pub use brynja_dtls as dtls;
pub use brynja_platform as platform;
pub use brynja_quic_tls as quic_tls;