fuzzysearch/Cargo.toml

50 lines
854 B
TOML
Raw Normal View History

2020-01-17 23:13:24 +00:00
[package]
name = "fuzzysearch"
version = "0.1.0"
authors = ["Syfaro <syfaro@huefox.com>"]
edition = "2018"
[dependencies]
2020-02-05 08:21:46 +00:00
tracing = "0.1"
tracing-subscriber = "0.2"
tracing-futures = "0.2"
prometheus = { version = "0.11", features = ["process"] }
lazy_static = "1"
2020-07-23 04:04:42 +00:00
opentelemetry = "0.6"
opentelemetry-jaeger = "0.5"
tracing-opentelemetry = "0.5"
2020-01-17 23:13:24 +00:00
tokio = { version = "1", features = ["full"] }
async-stream = "0.3"
2020-02-05 08:21:46 +00:00
futures = "0.3"
2020-01-17 23:13:24 +00:00
2020-02-05 08:21:46 +00:00
chrono = "0.4"
bytes = "1"
2020-01-17 23:13:24 +00:00
2020-02-05 08:21:46 +00:00
serde = { version = "1", features = ["derive"] }
serde_json = "1"
warp = "0.3"
reqwest = "0.11"
hyper = "0.14"
2020-02-05 08:21:46 +00:00
sqlx = { version = "0.5", features = ["runtime-tokio-native-tls", "postgres", "macros", "json", "offline"] }
2020-02-05 08:21:46 +00:00
img_hash = "3"
2020-02-20 00:23:36 +00:00
image = "0.23"
2020-02-05 08:21:46 +00:00
hamming = "0.1"
2020-02-16 05:50:09 +00:00
bk-tree = "0.3"
2020-07-23 04:04:42 +00:00
[profile.dev]
opt-level = 2
debug = true
[profile.release]
lto = true
codegen-units = 1
opt-level = 3