Files
k-notes/crates/worker/Cargo.toml
Gabriel Kaszewski c7e1a867ed perf: feature-gate smart deps, drop ONNX/qdrant from backend binary
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).
2026-08-08 15:23:39 +02:00

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 }