2026-03-16 22:23:58 +01:00
|
|
|
[workspace]
|
|
|
|
|
resolver = "2"
|
|
|
|
|
members = [
|
|
|
|
|
"apps/gateway",
|
|
|
|
|
"apps/users",
|
2026-03-17 20:42:51 +01:00
|
|
|
"apps/photographers",
|
|
|
|
|
"apps/tutors",
|
2026-03-16 22:23:58 +01:00
|
|
|
"apps/companies",
|
2026-03-17 20:42:51 +01:00
|
|
|
"apps/job_seekers",
|
2026-03-16 22:23:58 +01:00
|
|
|
"apps/customers",
|
2026-03-17 20:42:51 +01:00
|
|
|
"apps/makeup_artists",
|
|
|
|
|
"apps/developers",
|
|
|
|
|
"apps/video_editors",
|
|
|
|
|
"apps/graphic_designers",
|
|
|
|
|
"apps/social_media_managers",
|
|
|
|
|
"apps/fitness_trainers",
|
|
|
|
|
"apps/catering_services",
|
2026-03-16 22:23:58 +01:00
|
|
|
"crates/contracts",
|
|
|
|
|
"crates/config",
|
|
|
|
|
"crates/errors",
|
|
|
|
|
"crates/db",
|
|
|
|
|
"crates/observability",
|
|
|
|
|
"crates/auth",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[workspace.package]
|
|
|
|
|
edition = "2021"
|
|
|
|
|
license = "Proprietary"
|
|
|
|
|
authors = ["NXTGAUGE Team"]
|
|
|
|
|
|
|
|
|
|
[workspace.dependencies]
|
|
|
|
|
anyhow = "1"
|
|
|
|
|
axum = "0.8"
|
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
|
serde_json = "1"
|
|
|
|
|
thiserror = "2"
|
|
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
|
tracing = "0.1"
|
|
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
|
|
|
|
|
tonic = "0.12"
|
|
|
|
|
prost = "0.13"
|
|
|
|
|
sqlx = { version = "0.8", features = ["runtime-tokio-rustls", "postgres", "uuid", "chrono", "json"] }
|
|
|
|
|
uuid = { version = "1", features = ["serde", "v4"] }
|
|
|
|
|
chrono = { version = "0.4", features = ["serde"] }
|
2026-03-17 20:42:51 +01:00
|
|
|
lettre = { version = "0.11", features = ["tokio-rustls-tls", "serde"] }
|
|
|
|
|
|