FuzzySearch/Cargo.toml

25 lines
625 B
TOML

[package]
name = "fuzzysearch"
version = "0.1.0"
edition = "2021"
[dependencies]
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"
reqwest = { version = "0.12.7", features = ["blocking"] }
ratelimit = "0.9"