2026-07-16 12:32:17 +07:00
|
|
|
[package]
|
2026-07-20 09:04:57 +07:00
|
|
|
name = "zesdex-application"
|
2026-07-16 12:32:17 +07:00
|
|
|
version.workspace = true
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
authors.workspace = true
|
|
|
|
|
|
2026-07-20 09:04:57 +07:00
|
|
|
# Application layer — port traits (interfaces), use cases, DTOs.
|
|
|
|
|
# Depends ONLY on domain. Application services orchestrate domain objects
|
|
|
|
|
# through port traits without knowing concrete implementations.
|
2026-07-16 12:32:17 +07:00
|
|
|
[dependencies]
|
2026-07-20 09:04:57 +07:00
|
|
|
zesdex-domain = { path = "../domain" }
|
2026-07-16 12:32:17 +07:00
|
|
|
serde.workspace = true
|
|
|
|
|
serde_json.workspace = true
|
|
|
|
|
chrono.workspace = true
|
|
|
|
|
uuid.workspace = true
|
|
|
|
|
anyhow.workspace = true
|
2026-07-20 09:04:57 +07:00
|
|
|
tracing.workspace = true
|
|
|
|
|
tokio.workspace = true
|
2026-07-16 12:32:17 +07:00
|
|
|
base64.workspace = true
|
|
|
|
|
sha2.workspace = true
|
|
|
|
|
url.workspace = true
|