WIP job queue

This commit is contained in:
Sebastian Hugentobler 2025-07-01 21:10:35 +02:00
parent 525e278a4e
commit 6a5b309391
Signed by: shu
SSH key fingerprint: SHA256:ppcx6MlixdNZd5EUM1nkHOKoyQYoJwzuQKXM6J/t66M
15 changed files with 685 additions and 256 deletions

View file

@ -9,6 +9,7 @@ axum = { version = "0.8.4", features = ["http2", "tracing"] }
clap = { version = "4.5.40", features = ["derive"] }
futures = "0.3.31"
lopdf = "0.36.0"
postcard = { version = "1.1.2", features = ["alloc"] }
quick-xml = "0.38.0"
rayon = "1.10.0"
ring = "0.17.14"
@ -16,7 +17,7 @@ scraper = "0.23.1"
serde = { version = "1.0.219", features = ["derive"] }
sha2 = "0.10.9"
snafu = { version = "0.8.6", features = ["rust_1_81"] }
sqlx = { version = "0.8.6", features = [ "runtime-tokio", "tls-rustls-ring", "migrate", "postgres", "derive" ] }
sqlx = { version = "0.8.6", features = [ "runtime-tokio", "tls-rustls-ring", "migrate", "postgres", "derive", "uuid", "macros" ] }
tokenizers = "0.21.2"
tokio = { version = "1.45.1", features = ["rt-multi-thread", "macros"]}
tower-http = { version = "0.6.6", features = ["trace"] }