fuzzysearch/Cargo.toml

30 lines
613 B
TOML
Raw Normal View History

2020-01-12 05:07:01 +00:00
[package]
name = "e621-watcher"
version = "0.1.0"
authors = ["Syfaro <syfaro@huefox.com>"]
edition = "2018"
[dependencies]
2021-02-16 18:22:29 +00:00
tokio = { version = "1", features = ["full"] }
2021-02-17 04:43:33 +00:00
hyper = { version = "0.14", features = ["server"] }
reqwest = { version = "0.11", features = ["json"] }
2020-01-12 05:07:01 +00:00
2021-02-16 18:22:29 +00:00
serde = "1"
serde_json = "1"
2020-01-12 05:07:01 +00:00
2021-02-17 04:43:33 +00:00
sqlx = { version = "0.5", features = ["runtime-tokio-native-tls", "postgres", "macros", "json", "offline"] }
2020-01-12 05:07:01 +00:00
image = "0.23"
2021-02-17 04:43:33 +00:00
hamming = "0.1.3"
2021-02-16 18:22:29 +00:00
img_hash = "3"
2021-02-17 04:43:33 +00:00
sha2 = "0.9"
tracing = "0.1"
tracing-subscriber = "0.2"
anyhow = "1"
2021-02-17 04:43:33 +00:00
lazy_static = "1"
prometheus = { version = "0.11", features = ["process"] }