blog/backend/feature/auth/Cargo.toml
SquidSpirit e8f7f96677 BLOG-94 feat: create user when first login through OIDC
- 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.
2025-08-01 12:48:11 +08:00

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