1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*! A generic async ACME create.
Binaries can choose what async runtime and TLS lib is used.
You need to specify via features what crates are used to the actual work.
Without anything specified you will end up with *no async backend selected* or *no crypto backend selected*.
*/
pub mod acme;
mod jose;
mod crypto;
mod fs;
#[cfg(feature = "use_rustls")]
pub mod rustls_helper;