authx-axum 0.1.2

Axum integration for authx-rs: Tower middleware, session management, CSRF, rate limiting, and route handlers
Documentation
pub mod cookies;
pub mod csrf;
pub mod errors;
pub mod extractors;
pub mod handlers;
pub mod middleware;
pub mod oidc;
pub mod rate_limit;
pub mod webauthn;

pub use cookies::{clear_session_cookie, set_session_cookie};
pub use csrf::{CsrfConfig, csrf_middleware};
pub use errors::AuthErrorResponse;
pub use extractors::{AuthRejection, RequireAuth, RequireRole};
pub use handlers::AuthxState;
pub use middleware::SessionLayer;
pub use oidc::{
    OidcFederationState, OidcProviderState, oidc_federation_router, oidc_provider_router,
};
pub use rate_limit::{RateLimitConfig, RateLimitLayer};
pub use webauthn::webauthn_router;