feat: add oauth flow base

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2025-03-27 18:39:29 +00:00
parent 4f0f8ddbe1
commit 3081fb4af8
12 changed files with 763 additions and 225 deletions

View File

@@ -14,14 +14,14 @@ lto = true
codegen-units = 1
[dependencies]
async-session = "3.0.0"
axum = "0.8.1"
axum-extra = { version = "0.10.0", features = ["typed-header"] }
clap = { version = "4.5.32", features = ["derive"] }
log = "0.4.27"
log4rs = "1.3.0"
openidconnect = "4.0.0"
postgres = "0.19.10"
openidconnect = { version = "4.0.0", features = ["reqwest"] }
serde = "1.0.219"
serde_derive = "1.0.219"
serde_yaml = "0.9.34"
sqlx = { version = "0.8.3", features = ["postgres", "runtime-tokio"] }
sqlx = { version = "0.8.3", features = ["postgres", "runtime-tokio", "time"] }
tokio = { version = "1.44.1", features = ["rt-multi-thread"] }