cloudiful-server 0.2.3

Rust web server bootstrap crate with Actix and Axum adapters
Documentation
1
2
3
4
5
6
7
8
9
10
mod config;
mod error;
mod tls;

#[cfg(test)]
mod tests;

pub use config::{CorsConfig, DEFAULT_LISTEN_ADDR, ServerConfig, TlsConfig, ValidatedServerConfig};
pub use error::{ServerConfigError, ServerError, TlsConfigLoadError};
pub use tls::load_tls_config;