fuzzysearch/fuzzysearch-api/Cargo.toml

49 lines
1.2 KiB
TOML
Raw Permalink Normal View History

2020-12-07 23:41:32 +00:00
[package]
name = "fuzzysearch-api"
2022-01-05 04:39:21 +00:00
version = "0.3.0"
2020-12-07 23:41:32 +00:00
authors = ["Syfaro <syfaro@huefox.com>"]
edition = "2018"
[dependencies]
tracing = "0.1"
2021-12-09 04:45:17 +00:00
tracing-subscriber = "0.3"
2020-12-07 23:41:32 +00:00
tracing-futures = "0.2"
tracing-log = "0.1"
2020-12-07 23:41:32 +00:00
thiserror = "1"
2021-12-09 04:45:17 +00:00
prometheus = { version = "0.13", features = ["process"] }
2021-02-20 23:05:04 +00:00
lazy_static = "1"
2021-12-09 04:45:17 +00:00
opentelemetry = { version = "0.16", features = ["rt-tokio"] }
opentelemetry-jaeger = { version = "0.15", features = ["tokio"] }
tracing-opentelemetry = "0.16"
opentelemetry-http = "0.5"
2020-12-07 23:41:32 +00:00
2021-02-20 23:05:04 +00:00
tokio = { version = "1", features = ["full"] }
tokio-util = "0.6"
2021-02-20 23:05:04 +00:00
2020-12-07 23:41:32 +00:00
futures = "0.3"
chrono = "0.4"
2021-02-20 23:05:04 +00:00
bytes = "1"
2020-12-07 23:41:32 +00:00
serde = { version = "1", features = ["derive"] }
2021-02-20 23:05:04 +00:00
serde_json = "1"
2020-12-07 23:41:32 +00:00
poem = { version = "1", features = ["multipart", "opentelemetry", "prometheus"] }
poem-openapi = { version = "1", features = ["chrono", "swagger-ui"] }
reqwest = { version = "0.11", features = ["multipart", "stream"] }
2021-02-20 23:05:04 +00:00
hyper = "0.14"
2020-12-07 23:41:32 +00:00
2021-12-12 23:14:52 +00:00
sqlx = { version = "0.5", features = ["runtime-tokio-native-tls", "postgres", "macros", "json", "offline", "chrono"] }
2020-12-07 23:41:32 +00:00
2021-02-20 23:05:04 +00:00
image = "0.23"
2020-12-07 23:41:32 +00:00
img_hash = "3"
hamming = "0.1"
bkapi-client = { git = "https://github.com/Syfaro/bkapi.git" }
2020-12-07 23:41:32 +00:00
fuzzysearch-common = { path = "../fuzzysearch-common" }