wiring `smart` feature gates fastembed+qdrant; bootstrap no longer links ONNX Runtime (~300 MiB RSS savings). prod compose stripped to backend-only (no worker/qdrant).
20 lines
424 B
TOML
20 lines
424 B
TOML
[package]
|
|
name = "worker"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[[bin]]
|
|
name = "worker"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
domain = { workspace = true }
|
|
application = { workspace = true }
|
|
wiring = { workspace = true, features = ["smart"] }
|
|
async-trait = { workspace = true }
|
|
dotenvy = "0.15"
|
|
tokio = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
anyhow = { workspace = true }
|