nxtgauge-backend-rust/apps/cron/Cargo.toml
Tracewebstudio Dev a4af5c2c06 feat: add LiteLLM support and auto-apply cron job
- Add get_llm_base_url() and get_llm_model() helper functions
- Update call_ollama_inline to route to LiteLLM when LLM_PROVIDER=litellm
- Add auto-apply cron task for background job matching
- Auto-apply matches job seekers to new jobs based on skills
- Generate cover letters via LiteLLM for each application
2026-06-14 18:00:38 +02:00

21 lines
454 B
TOML

[package]
name = "cron"
version = "0.1.0"
edition.workspace = true
license.workspace = true
[dependencies]
# Intra-workspace
db = { path = "../../crates/db" }
email = { path = "../../crates/email" }
# Workspace dependencies
tokio.workspace = true
sqlx.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
serde.workspace = true
serde_json.workspace = true
chrono.workspace = true
uuid.workspace = true
reqwest.workspace = true