fuzzysearch/fuzzysearch-ingest-furaffinity/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

24 lines
725 B
TOML

[package]
name = "fuzzysearch-ingest-furaffinity"
version = "0.1.0"
authors = ["Syfaro <syfaro@huefox.com>"]
edition = "2018"
[dependencies]
reqwest = "0.11"
tokio = { version = "1", features = ["full"] }
tokio-postgres = { version = "0.7.0", features = ["with-chrono-0_4"] }
chrono = "0.4"
hyper = { version = "0.14", features = ["server"] }
prometheus = { version = "0.12", features = ["process"] }
lazy_static = "1"
futures-retry = "0.6"
tracing = "0.1"
tracing-unwrap = "0.9"
faktory = "0.11"
anyhow = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
fuzzysearch-common = { path = "../fuzzysearch-common", features = ["queue"] }
furaffinity-rs = { git = "https://github.com/Syfaro/furaffinity-rs" }