Finish OIDC login

This commit is contained in:
2025-03-18 19:37:46 +01:00
parent dbe1ec22e0
commit 1a022bd33e
6 changed files with 149 additions and 12 deletions

View File

@@ -452,7 +452,7 @@ dependencies = [
"quick-xml 0.32.0",
"rust-ini",
"serde",
"thiserror",
"thiserror 1.0.69",
"time",
"url",
]
@@ -463,7 +463,7 @@ version = "0.26.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73ae4ae7c45238b60af0a3b27ef2fcc7bd5b8fdcd8a6d679919558b40d3eff7a"
dependencies = [
"thiserror",
"thiserror 1.0.69",
]
[[package]]
@@ -1833,7 +1833,7 @@ dependencies = [
"rust-s3",
"serde",
"serde_json",
"thiserror",
"thiserror 2.0.12",
"tokio",
]
@@ -2362,7 +2362,7 @@ dependencies = [
"serde_derive",
"serde_json",
"sha2",
"thiserror",
"thiserror 1.0.69",
"time",
"tokio",
"tokio-stream",
@@ -2739,7 +2739,16 @@ version = "1.0.69"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
dependencies = [
"thiserror-impl",
"thiserror-impl 1.0.69",
]
[[package]]
name = "thiserror"
version = "2.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
dependencies = [
"thiserror-impl 2.0.12",
]
[[package]]
@@ -2753,6 +2762,17 @@ dependencies = [
"syn",
]
[[package]]
name = "thiserror-impl"
version = "2.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "time"
version = "0.3.39"