rs-auth-axum 0.1.2

Axum integration for rs-auth.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Axum HTTP integration for rs-auth.
//!
//! Provides handlers, extractors, middleware, cookie helpers, and a
//! pre-built [`auth_router`] for mounting authentication endpoints.

pub mod cookie;
pub mod error;
pub mod extract;
pub mod handlers;
pub mod middleware;
pub mod router;
pub mod state;

pub use router::auth_router;
pub use state::AuthState;