FuzzySearch/Cargo.toml

23 lines
549 B
TOML
Raw Normal View History

2024-08-12 14:43:12 +00:00
[package]
name = "fuzzysearch"
version = "0.1.0"
edition = "2021"
[dependencies]
2024-08-17 13:59:49 +00:00
dotenvy = "0.15"
thiserror = { version = "1.0" }
anyhow = "1.0"
cached = { version = "0.53", features = ["proc_macro", "async"] }
chrono = "0.4"
log = "0.4"
env_logger = "0.11"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.39", features = ["full"] }
img_hash = "3.2"
futures = "0.3"
bk-tree = "0.5"
hamming = "0.1"
sqlx = { version = "0.8", features = [ "runtime-tokio", "migrate", "postgres" ] }
image = ">=0.21,<0.24"