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 }
|
2026-04-12 22:03:06 +02:00
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
|
name = "leads"
|
|
|
|
|
path = "src/main.rs"
|