This commit is contained in:
2025-06-08 13:27:50 -04:00
commit 41c4eca4f5
18 changed files with 2656 additions and 0 deletions

16
Cargo.toml Executable file
View File

@@ -0,0 +1,16 @@
[package]
name = "api_rust"
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"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
argon2 = "0.4"
jsonwebtoken = "8.1"
chrono = "0.4"
dotenv = "0.15"
tower-http = { version = "0.4", features = ["cors"] }