2026-03-17 20:42:51 +01:00
|
|
|
[package]
|
|
|
|
|
name = "gateway"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
axum = { workspace = true }
|
|
|
|
|
tokio = { workspace = true }
|
|
|
|
|
serde = { workspace = true }
|
|
|
|
|
serde_json = { workspace = true }
|
2026-05-31 22:55:00 +05:30
|
|
|
tower-http = { version = "0.6", features = ["cors", "set-header"] }
|
2026-03-17 20:42:51 +01:00
|
|
|
tracing = { workspace = true }
|
|
|
|
|
tracing-subscriber = { workspace = true }
|
feat: commit remaining service files, migrations, and model updates
- gateway, companies, customers, job_seekers apps updated
- users config/mod/mail handlers
- auth middleware and jwt crate updates
- db models: user, config, mod updates
- all remaining migrations: portfolio, notifications, reviews, kb, support, coupons, onboarding states
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-18 22:59:47 +01:00
|
|
|
reqwest = { version = "0.12", features = ["json", "stream"] }
|
2026-03-17 20:42:51 +01:00
|
|
|
anyhow = { workspace = true }
|