- Introduced UserDbService and UserDbServiceImpl for user data handling. - Added UserMapper for converting between User and UserRecord. - Implemented user creation and retrieval in the database. - Updated AuthRepository to include user-related methods. - Enhanced OIDC claims processing to include issuer information. - Created user table in the database with necessary fields and indexes.
14 lines
274 B
TOML
14 lines
274 B
TOML
[package]
|
|
name = "auth"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
actix-session.workspace = true
|
|
actix-web.workspace = true
|
|
async-trait.workspace = true
|
|
log.workspace = true
|
|
openidconnect.workspace = true
|
|
serde.workspace = true
|
|
sqlx.workspace = true
|