2024-09-03 00:17:19 -05:00
|
|
|
[package]
|
|
|
|
name = "task"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-09-21 22:57:37 -05:00
|
|
|
tokio = { version = "1.19.2", features = ["full"] }
|
|
|
|
job_scheduler = "1.2.1"
|
2024-09-22 03:10:02 -05:00
|
|
|
sqlx = { version = "0.8.2", features = [
|
|
|
|
"postgres",
|
|
|
|
"chrono",
|
|
|
|
"runtime-tokio-rustls",
|
|
|
|
] }
|
2024-09-21 22:57:37 -05:00
|
|
|
chrono = "0.4.38"
|
|
|
|
once_cell = "1.19.0"
|
2024-09-22 03:10:02 -05:00
|
|
|
dotenvy = "0.15.7"
|
|
|
|
futures = "0.3.30"
|
|
|
|
markdown = "1.0.0-alpha.20"
|