feat: add project and email service

This commit is contained in:
Jet Pham 2026-03-11 13:00:51 -07:00 committed by Jet
parent 99715f6105
commit f48390b15e
29 changed files with 2631 additions and 63 deletions

13
api/Cargo.toml Normal file
View file

@ -0,0 +1,13 @@
[package]
name = "jetpham-qa-api"
version = "0.1.0"
edition = "2021"
[dependencies]
axum = "0.8"
lettre = "0.11"
rusqlite = { version = "0.32", features = ["bundled"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["full"] }
tower-http = { version = "0.6", features = ["cors"] }