18 lines
509 B
TOML
18 lines
509 B
TOML
|
[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"
|
||
|
sqlx = { version = "0.7.1", features = ["runtime-tokio", "sqlite", "chrono"] }
|
||
|
actix-web = "4"
|
||
|
actix-web-httpauth = "0.8.0"
|