cedros-login-server 0.0.41

Authentication server for cedros-login with email/password, Google OAuth, and Solana wallet sign-in
Documentation
1
2
3
4
5
6
7
8
9
//! Middleware for request processing

pub mod csrf;
pub mod rate_limit;
pub mod request_id;

pub use csrf::CsrfLayer;
pub use rate_limit::{KeyExtractor, RateLimitConfig, RateLimitLayer, RateLimitStore};
pub use request_id::{RequestId, RequestIdLayer, REQUEST_ID_HEADER};