1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
//! # lmrc-auth
//!
//! Authentication framework for LMRC Stack applications.
//!
//! This library provides a flexible authentication system with support for:
//! - Multiple authentication providers (database, LDAP, OAuth, etc.)
//! - Session management
//! - Password hashing
//! - Authentication middleware for Axum
//! - Ready-to-use HTTP handlers
//!
//! ## Features
//!
//! - `bcrypt` (default) - Password hashing with bcrypt
//! - `database` - Database-backed authentication provider with SeaORM
//!
//! ## Quick Start
//!
//! ```rust,ignore
//! use lmrc_auth::{AuthProvider, DatabaseAuthProvider, AuthConfig};
//! use sea_orm::Database;
//! use std::sync::Arc;
//!
//! #[tokio::main]
//! async fn main() -> Result<(), Box<dyn std::error::Error>> {
//! let db = Database::connect("postgres://localhost/mydb").await?;
//!
//! let auth_provider = Arc::new(
//! DatabaseAuthProvider::new(
//! db,
//! "users",
//! "sessions",
//! AuthConfig::default()
//! )
//! );
//!
//! // Use in your Axum application
//! Ok(())
//! }
//! ```
// Re-export commonly used types
pub use ;
pub use ;
pub use ;
pub use DatabaseAuthProvider;
/// Authentication configuration