rust-webx-host 0.3.0

rust-webx HTTP layer: Host builder, middleware pipeline, Trie-based router, hyper integration
Documentation
// rust-webx-host — HTTP server, middleware pipeline, and routing.

pub mod auth_jwt;
pub mod authz;
pub mod compression;
pub mod context;
pub mod cors;
pub mod diagnostics;
pub mod endpoint;
pub mod health;
pub mod memory_cache;
pub mod metrics;
pub mod pipeline;
pub mod problem_response;
pub mod rate_limit;
pub mod request_id;
pub mod request_tracing;
pub mod router;
pub mod security_headers;
pub mod server;
pub mod timing;

#[cfg(feature = "testing")]
pub mod testing;

pub use auth_jwt::*;
pub use authz::*;
pub use compression::*;
pub use context::*;
pub use cors::*;
pub use diagnostics::*;
pub use endpoint::*;
pub use health::*;
pub use memory_cache::*;
pub use metrics::*;
pub use pipeline::*;
pub use problem_response::*;
pub use rate_limit::*;
pub use request_id::*;
pub use request_tracing::*;
pub use router::*;
pub use security_headers::*;
pub use server::*;
pub use timing::*;