auth-framework 0.4.2

A comprehensive, production-ready authentication and authorization framework for Rust applications
Documentation
1
2
3
4
5
6
7
8
9
10
//! Testing utilities and infrastructure
//!
//! This module provides testing utilities, mock implementations, and
//! test infrastructure for the authentication framework.

pub mod test_infrastructure;
pub mod utilities;

pub use test_infrastructure::*;
pub use utilities::*;