elif-auth 0.1.0

Authentication and authorization system for elif.rs framework - JWT, sessions, password hashing, and middleware
Documentation
//! # elif-auth: Authentication and Authorization for elif.rs
//! 
//! This crate provides comprehensive authentication and authorization capabilities
//! for the elif.rs web framework, including JWT tokens, sessions, RBAC, and MFA.

pub mod config;
pub mod error;
pub mod traits;
pub mod providers;
pub mod middleware;
pub mod utils;

// Re-exports for convenient access
pub use config::*;
pub use error::*;
pub use traits::*;
pub use providers::*;
pub use utils::*;

/// Authentication result type alias
pub type AuthResult<T> = Result<T, AuthError>;

/// Authentication system version
pub const VERSION: &str = env!("CARGO_PKG_VERSION");