axum-gate 1.1.0

Flexible authentication and authorization for Axum with JWT cookies or bearer tokens, optional OAuth2, and role/group/permission RBAC. Suitable for single-node and distributed systems.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! SeaORM persistence models for accounts and credentials.
//!
//! These modules define the database entities used internally by `SeaOrmRepository`.
//! Most users of the library interact only with the repository traits. Import these
//! models if you need to perform custom migrations, schema generation, or direct
//! queries outside the provided repository abstraction.
//!
//! Submodules exposed:
//! * `account`
//! * `credentials`

pub mod account;
pub mod credentials;
pub mod permission_mapping;