2021-02-20 21:46:45 +00:00
|
|
|
[package]
|
2021-02-21 06:26:29 +00:00
|
|
|
name = "fuzzysearch-ingest-e621"
|
2021-02-20 21:46:45 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Syfaro <syfaro@huefox.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
|
|
|
|
hyper = { version = "0.14", features = ["server"] }
|
|
|
|
reqwest = { version = "0.11", features = ["json"] }
|
|
|
|
|
|
|
|
serde = "1"
|
|
|
|
serde_json = "1"
|
|
|
|
|
|
|
|
sqlx = { version = "0.5", features = ["runtime-tokio-native-tls", "postgres", "macros", "json", "offline"] }
|
|
|
|
|
|
|
|
image = "0.23"
|
|
|
|
img_hash = "3"
|
2021-12-09 04:45:17 +00:00
|
|
|
sha2 = "0.10"
|
2021-02-20 21:46:45 +00:00
|
|
|
|
|
|
|
tracing = "0.1"
|
2021-04-22 01:46:10 +00:00
|
|
|
tracing-unwrap = "0.9"
|
2021-02-20 21:46:45 +00:00
|
|
|
|
|
|
|
anyhow = "1"
|
|
|
|
|
|
|
|
lazy_static = "1"
|
2021-12-09 04:45:17 +00:00
|
|
|
prometheus = { version = "0.13", features = ["process"] }
|
2021-02-21 06:26:29 +00:00
|
|
|
|
2021-04-21 20:58:32 +00:00
|
|
|
fuzzysearch-common = { path = "../fuzzysearch-common", features = ["queue"] }
|