added refresh token generator

This commit is contained in:
2025-10-11 08:25:20 +02:00
parent 11c3fa56d2
commit c937ae8d83
8 changed files with 229 additions and 15 deletions

View File

@@ -5,7 +5,10 @@ edition = "2024"
publish = false
[dependencies]
axum = {version = "0.8.4", features = ["ws"]}
axum = {version = "0.8.6", features = ["ws", "macros"]}
axum-extra = { version = "0.10.3", features = ["typed-header", "cookie"] }
headers = "0.4"
tokio = { version = "1", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
@@ -24,6 +27,8 @@ anyhow = "1.0.100"
argon2 = {version = "0.5.3"}
rand_core = {version = "0.6.4", features = ["getrandom"]}
futures-util = {version = "0.3.31"}
uuid = {version = "1.18.1", features = ["serde"] }
base64 = "0.22.1"