- adapters-sidecar: XmpSidecarWriter using xmp_toolkit - Writes StructuredData → XMP with EXIF/DC/XMP namespace routing - Reads XMP back to StructuredData - Wired into bootstrap + worker, deleted both LogSidecarWriter stubs
34 lines
895 B
TOML
34 lines
895 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-sidecar = { workspace = true }
|
|
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 }
|