2026-04-12 22:03:06 +02:00
|
|
|
[package]
|
|
|
|
|
name = "leads"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
sqlx = { workspace = true }
|
|
|
|
|
axum = { workspace = true }
|
|
|
|
|
serde = { workspace = true }
|
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
|
tokio = { workspace = true, features = ["full"] }
|
|
|
|
|
tracing = { workspace = true }
|
|
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
|
|
|
|
|
anyhow = { workspace = true }
|
|
|
|
|
uuid = { workspace = true }
|
|
|
|
|
chrono = { workspace = true }
|
|
|
|
|
tower-http = { version = "0.6", features = ["cors", "trace"] }
|
2026-05-01 02:54:42 +02:00
|
|
|
reqwest = { workspace = true }
|
feat: profile photo upload, PDF resume generation, AI auto-apply, schema fixes
- Profile photo upload: POST /api/profile/photo for all roles, stores via B2 storage
- PDF resume: auto-generated from job seeker portfolio on every profile save (printpdf)
- Company applications: enriched with applicant name, avatar, headline, skills, education
- AI auto-apply cron: rewrote run_auto_apply with correct schema (job_seeker_profiles,
cover_note, ai_auto_apply_settings, ai_auto_apply_logs, credit deduction)
- Schema fix: job_seeker_profiles table name (was incorrectly 'job_seekers' in two places)
- Migration: add resume_url column to job_seeker_profiles
- Migrations: PayU rename, tracecoin hardening, lead reserve linkage, invoice/wallet crates
- PayU integration: ai_credits, packages, admin payment handlers
- Wallet and invoice crates added
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-07-02 13:15:43 +02:00
|
|
|
contracts = { path = "../../crates/contracts" }
|
|
|
|
|
jsonwebtoken = "10"
|
2026-04-12 22:03:06 +02:00
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
|
name = "leads"
|
|
|
|
|
path = "src/main.rs"
|