2020-12-07 23:41:32 +00:00
|
|
|
[package]
|
2022-01-04 01:48:34 +00:00
|
|
|
name = "fuzzysearch-api"
|
2021-02-21 04:40:03 +00:00
|
|
|
version = "0.2.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"
|
2021-08-11 01:28:32 +00:00
|
|
|
tracing-log = "0.1"
|
2020-12-07 23:41:32 +00:00
|
|
|
|
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"
|
|
|
|
|
2022-03-23 19:26:56 +00:00
|
|
|
opentelemetry = { version = "0.17", features = ["rt-tokio"] }
|
|
|
|
opentelemetry-jaeger = { version = "0.16", features = ["tokio"] }
|
|
|
|
tracing-opentelemetry = "0.17"
|
|
|
|
opentelemetry-http = "0.6"
|
2020-12-07 23:41:32 +00:00
|
|
|
|
2021-02-20 23:05:04 +00:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
2021-08-11 01:28:32 +00:00
|
|
|
tokio-stream = "0.1"
|
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"
|
2022-05-19 16:37:21 +00:00
|
|
|
hex = "0.4"
|
2020-12-07 23:41:32 +00:00
|
|
|
|
2021-02-20 23:05:04 +00:00
|
|
|
warp = "0.3"
|
2021-08-11 01:28:32 +00:00
|
|
|
reqwest = { version = "0.11", features = ["multipart"] }
|
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"
|
|
|
|
|
2021-08-11 01:28:32 +00:00
|
|
|
bkapi-client = { git = "https://github.com/Syfaro/bkapi.git" }
|
2020-12-07 23:41:32 +00:00
|
|
|
|
2021-08-11 01:28:32 +00:00
|
|
|
fuzzysearch-common = { path = "../fuzzysearch-common" }
|