nxtgauge-backend-rust/Cargo.toml

47 lines
1.3 KiB
TOML
Raw Normal View History

[workspace]
resolver = "2"
members = [
"apps/gateway",
"apps/users",
"apps/photographers",
"apps/tutors",
"apps/companies",
"apps/job_seekers",
"apps/customers",
"apps/makeup_artists",
"apps/developers",
"apps/video_editors",
"apps/graphic_designers",
"apps/social_media_managers",
"apps/fitness_trainers",
"apps/catering_services",
"crates/contracts",
"crates/db",
"crates/auth",
"crates/storage",
"crates/cache",
]
[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"] }
lettre = { version = "0.11", default-features = false, features = ["tokio1-rustls-tls", "smtp-transport", "builder", "serde"] }
redis = { version = "0.27", features = ["tokio-comp", "connection-manager"] }
async-trait = "0.1"