2020-01-17 23:13:24 +00:00
|
|
|
[package]
|
|
|
|
name = "fuzzysearch"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Syfaro <syfaro@huefox.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
log = "0.4.8"
|
|
|
|
pretty_env_logger = "0.3.1"
|
|
|
|
|
|
|
|
tokio = { version = "0.2.9", features = ["full"] }
|
|
|
|
futures = "0.3.1"
|
|
|
|
futures-util = "0.3.1"
|
2020-01-29 20:56:36 +00:00
|
|
|
|
|
|
|
chrono = "0.4.10"
|
2020-01-17 23:13:24 +00:00
|
|
|
bytes = "0.5.3"
|
|
|
|
|
|
|
|
serde = { version = "1.0.104", features = ["derive"] }
|
2020-01-17 23:21:30 +00:00
|
|
|
warp = "0.2.0"
|
2020-01-17 23:13:24 +00:00
|
|
|
|
|
|
|
tokio-postgres = "0.5.1"
|
2020-01-17 23:21:30 +00:00
|
|
|
bb8 = "0.4.0"
|
|
|
|
bb8-postgres = "0.4.0"
|
2020-01-17 23:13:24 +00:00
|
|
|
|
|
|
|
img_hash = "3.0.0"
|
|
|
|
image = "0.22"
|
|
|
|
hamming = "0.1.3"
|
2020-01-29 20:56:36 +00:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
lto = true
|
|
|
|
codegen-units = 1
|
|
|
|
opt-level = 3
|