#![doc(
html_favicon_url = "https://raw.githubusercontent.com/plabayo/rama/main/docs/img/rama_logo.svg"
)]
#![doc(
html_logo_url = "https://raw.githubusercontent.com/plabayo/rama/main/docs/img/rama_logo.svg"
)]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![cfg_attr(test, allow(clippy::float_cmp))]
pub mod cert;
#[cfg(feature = "aws-lc")]
#[cfg_attr(docsrs, doc(cfg(feature = "aws-lc")))]
pub mod jose;
pub mod pki_types {
#[doc(inline)]
pub use rustls_pki_types::*;
}
#[cfg(feature = "native-certs")]
#[cfg_attr(docsrs, doc(cfg(feature = "native-certs")))]
pub mod native_certs;
pub mod ocsp;
pub mod crl;
pub mod dep {
#[cfg(feature = "aws-lc")]
#[cfg_attr(docsrs, doc(cfg(feature = "aws-lc")))]
pub mod aws_lc_rs {
#[doc(inline)]
pub use aws_lc_rs::*;
}
#[cfg(feature = "boring")]
#[cfg_attr(docsrs, doc(cfg(feature = "boring")))]
pub mod boring {
#[doc(inline)]
pub use rama_boring::*;
}
#[cfg(any(feature = "aws-lc", feature = "ring"))]
#[cfg_attr(docsrs, doc(cfg(any(feature = "aws-lc", feature = "ring"))))]
pub mod rcgen {
#[doc(inline)]
pub use rcgen::*;
}
pub mod x509_parser {
#[doc(inline)]
pub use x509_parser::*;
}
}