autotasker/Cargo.toml

26 lines
751 B
TOML

[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"] }
anyhow = "1.0.75"
tokio = { version = "1.37.0", features = ["full"] }
axum = { version = "0.7.5", features = ["json"] }
minijinja = { version = "2.1", features = ["builtins"] }
uuid = { version = "1.8.0", features = ["serde", "v4"] }
fully_pub = "0.1.4"
log = "0.4.22"
env_logger = "0.11.5"
tower-http = { version = "0.5.2", features = ["fs"] }
tokio-cron-scheduler = "0.10.2"
argh = "0.1.12"
tokio-util = "0.7.11"
strum_macros = "0.26.4"