2026-07-16 12:32:17 +07:00
|
|
|
[package]
|
2026-07-20 09:04:57 +07:00
|
|
|
name = "zesdex-domain"
|
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
|
|
|
# Domain layer — PURE entities, value objects, repository/service traits.
|
|
|
|
|
# Zero framework dependencies. Only serde for serialization, chrono for
|
|
|
|
|
# timestamps, uuid for identity.
|
2026-07-16 12:32:17 +07:00
|
|
|
[dependencies]
|
|
|
|
|
serde.workspace = true
|
|
|
|
|
serde_json.workspace = true
|
|
|
|
|
chrono.workspace = true
|
|
|
|
|
uuid.workspace = true
|
|
|
|
|
base64.workspace = true
|
|
|
|
|
sha2.workspace = true
|
|
|
|
|
url.workspace = true
|
2026-07-20 09:04:57 +07:00
|
|
|
libc.workspace = true
|
|
|
|
|
anyhow.workspace = true
|
2026-07-16 12:32:17 +07:00
|
|
|
tracing.workspace = true
|