- Add 35 branded HTML email templates with Nxtgauge styling - Create email template engine with base template system - Add email management API for admin panel - Wire email triggers from all services - All services compile successfully
22 lines
621 B
TOML
22 lines
621 B
TOML
[package]
|
|
name = "job_seekers"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
axum = { workspace = true, features = ["multipart"] }
|
|
tokio = { workspace = true }
|
|
serde = { workspace = true }
|
|
sqlx = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
uuid = { workspace = true }
|
|
chrono = { workspace = true }
|
|
bytes = { workspace = true }
|
|
db = { path = "../../crates/db" }
|
|
auth = { path = "../../crates/auth" }
|
|
contracts = { path = "../../crates/contracts" }
|
|
storage = { path = "../../crates/storage" }
|
|
email = { path = "../../crates/email" }
|
|
serde_json = { workspace = true }
|
|
|