autotasker/Cargo.toml

26 lines
751 B
TOML
Raw Normal View History

2024-04-27 09:59:43 +00:00
[package]
name = "autotasker"
version = "0.1.0"
edition = "2021"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
chrono = { version = "0.4.26", features = ["serde"] }
sqlx = { version = "0.7.4", features = ["sqlite", "runtime-tokio", "chrono", "uuid"] }
2024-04-27 09:59:43 +00:00
anyhow = "1.0.75"
tokio = { version = "1.37.0", features = ["full"] }
axum = { version = "0.7.5", features = ["json"] }
2024-07-23 15:25:22 +00:00
minijinja = { version = "2.1", features = ["builtins"] }
2024-04-27 09:59:43 +00:00
uuid = { version = "1.8.0", features = ["serde", "v4"] }
fully_pub = "0.1.4"
2024-07-21 15:03:37 +00:00
log = "0.4.22"
2024-08-02 14:39:21 +00:00
env_logger = "0.11.5"
tower-http = { version = "0.5.2", features = ["fs"] }
2024-07-22 18:25:30 +00:00
tokio-cron-scheduler = "0.10.2"
argh = "0.1.12"
2024-07-24 14:03:44 +00:00
tokio-util = "0.7.11"
strum_macros = "0.26.4"
2024-04-27 09:59:43 +00:00