Files
k-template/crates/worker/Cargo.toml

19 lines
449 B
TOML

[package]
name = "worker"
version = "0.1.0"
edition = "2024"
[[bin]]
name = "worker"
path = "src/main.rs"
[dependencies]
domain = { workspace = true }
adapters-sqlite = { path = "../adapters/sqlite" }
tokio = { workspace = true }
anyhow = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
dotenvy = { workspace = true }
async-trait = { workspace = true }