rustauth-actix-web 0.3.0

Actix Web integration for RustAuth.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Actix Web integration for RustAuth.

mod error;
mod options;
mod request;
mod response;
mod router;

#[cfg(feature = "test-utils")]
pub mod test_utils;

pub use error::RustAuthActixWebError;
pub use options::RustAuthActixWebOptions;
pub use router::{handle, validate_mount_config, RustAuthActixWebExt};