admin-worker/Cargo.toml

21 lines
559 B
TOML
Raw Normal View History

[package]
name = "admin-worker"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.29", features = ["macros", "rt-multi-thread", "sync"] }
anyhow = "1.0"
serde = { version = "1.0.183", features = ["derive"] }
serde_json = "1.0.108"
env_logger = "0.10"
log = "0.4"
chrono = "0.4.31"
zip = "0.6.6"
walkdir = "2.4.0"
sqlx = { version = "0.7.1", features = ["runtime-tokio", "sqlite", "chrono"] }
actix-web = "4"
actix-web-httpauth = "0.8.0"