Issues vscode rreading errors

This commit is contained in:
2025-06-10 16:54:56 -04:00
parent 41c4eca4f5
commit 5d0a9bb255
13 changed files with 421 additions and 286 deletions

View File

@@ -4,13 +4,13 @@ version = "0.1.0"
edition = "2021"
[dependencies]
axum = "0.6"
tokio = { version = "1.0", features = ["full"] }
sqlx = { version = "0.6", features = ["runtime-tokio-rustls", "postgres"] }
axum = "0.6.20"
tokio = { version = "1.35.1", features = ["full"] }
sqlx = { version = "0.6", features = ["runtime-tokio-rustls", "postgres", "chrono"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
argon2 = "0.4"
jsonwebtoken = "8.1"
chrono = "0.4"
chrono = { version = "0.4", features = ["serde"] }
dotenv = "0.15"
tower-http = { version = "0.4", features = ["cors"] }
tower-http = { version = "0.4", features = ["cors"] }
argon2 = { version = "0.5.3", features = ["std"] }