fuzzysearch/fuzzysearch-refresh/Cargo.toml
Syfaro 15ab9563e0
Add worker for refreshing submission data (#11)
* Initial attempt at a worker to refresh old data.

* Build refresh image on non-master branches.

* Allow specifying missing batch sizes.

* Store more data for deleted submissions.

* Add refresh to builds.

* Update furaffinity-rs dependency.

* Update furaffinity-rs, again.

* Update refresh Dockerfile to avoid extra build.

* Update faktory dependency.

* Update deleted flag migration order.
2021-08-21 22:48:05 -07:00

26 lines
547 B
TOML

[package]
name = "fuzzysearch-refresh"
version = "0.1.0"
authors = ["Syfaro <syfaro@huefox.com>"]
edition = "2018"
[dependencies]
tracing = "0.1"
tracing-unwrap = "0.9"
anyhow = "1"
thiserror = "1"
tokio = "1"
tokio-stream = "0.1"
futures = "0.3"
faktory = "0.11"
sqlx = { version = "0.5", features = ["runtime-tokio-native-tls", "postgres", "macros", "json", "offline", "chrono"] }
chrono = "0.4"
reqwest = "0.11"
furaffinity-rs = { git = "https://github.com/Syfaro/furaffinity-rs" }
fuzzysearch-common = { path = "../fuzzysearch-common" }