2026-03-17 20:42:51 +01:00
|
|
|
[package]
|
|
|
|
|
name = "companies"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
axum = { workspace = true }
|
|
|
|
|
tokio = { workspace = true }
|
|
|
|
|
serde = { workspace = true }
|
|
|
|
|
sqlx = { workspace = true }
|
|
|
|
|
tracing = { workspace = true }
|
|
|
|
|
tracing-subscriber = { workspace = true }
|
|
|
|
|
uuid = { workspace = true }
|
|
|
|
|
chrono = { workspace = true }
|
|
|
|
|
db = { path = "../../crates/db" }
|
|
|
|
|
auth = { path = "../../crates/auth" }
|
|
|
|
|
contracts = { path = "../../crates/contracts" }
|
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
|
|
|
serde_json = { workspace = true }
|
2026-03-17 20:42:51 +01:00
|
|
|
|