mirror of
https://github.com/Syfaro/fuzzysearch.git
synced 2024-11-05 14:32:56 +00:00
dd7805d052
* Rough initial progress on webhooks. * Better webhook error handling, use all ingesters. * Include hash in webhook data. * Always pull Rust image. * Fix missing features.
29 lines
616 B
TOML
29 lines
616 B
TOML
[package]
|
|
name = "fuzzysearch-common"
|
|
version = "0.1.0"
|
|
authors = ["Syfaro <syfaro@huefox.com>"]
|
|
edition = "2018"
|
|
|
|
[features]
|
|
default = []
|
|
|
|
video = ["ffmpeg-next", "tempfile"]
|
|
queue = ["faktory", "tokio", "serde_json"]
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
tracing = "0.1"
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
base64 = "0.13"
|
|
|
|
image = "0.23"
|
|
img_hash = "3"
|
|
|
|
ffmpeg-next = { version = "4", optional = true }
|
|
tempfile = { version = "3", optional = true }
|
|
|
|
faktory = { version = "0.11", optional = true }
|
|
tokio = { version = "1", features = ["rt"], optional = true }
|
|
serde_json = { version = "1", optional = true }
|