- Tests for ExecutePipelineHandler (happy path, fallback, disabled skip, failure retry, not found) - Tests for ProcessNextJobHandler (empty queue, process, drain multiple) - DerivativeGenerated domain event + event-payload mapping + event_store aggregate - Renamed event-payload → adapters-event-payload, event-transport → adapters-event-transport
33 lines
853 B
TOML
33 lines
853 B
TOML
[package]
|
|
name = "bootstrap"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[[bin]]
|
|
name = "k_photos"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
domain = { workspace = true }
|
|
application = { workspace = true }
|
|
adapters-auth = { workspace = true }
|
|
|
|
adapters-storage = { workspace = true, features = ["s3"] }
|
|
adapters-nats = { workspace = true }
|
|
adapters-event-transport = { workspace = true }
|
|
async-nats = { workspace = true }
|
|
|
|
presentation = { workspace = true }
|
|
|
|
|
|
adapters-postgres = { workspace = true }
|
|
|
|
tokio = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
dotenvy = { workspace = true }
|
|
tower-http = { workspace = true }
|
|
axum = { workspace = true }
|