fuzzysearch/fuzzysearch-ingest-e621/Cargo.toml

31 lines
682 B
TOML
Raw Permalink Normal View History

[package]
2021-02-21 06:26:29 +00:00
name = "fuzzysearch-ingest-e621"
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"
tracing = "0.1"
2021-04-22 01:46:10 +00:00
tracing-unwrap = "0.9"
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
fuzzysearch-common = { path = "../fuzzysearch-common", features = ["queue"] }