[package]
edition = "2024"
name = "quickmatch"
version = "0.3.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lightning-fast fuzzy string matching with hybrid word and trigram indexing"
readme = "README.md"
keywords = [
"search",
"fuzzy",
"matching",
"trigram",
"autocomplete",
]
categories = [
"algorithms",
"text-processing",
"data-structures",
]
license = "MIT"
repository = "https://github.com/nym21/quickmatch"
[lib]
name = "quickmatch"
path = "src/lib.rs"
[[example]]
name = "autocomplete"
path = "examples/autocomplete.rs"
[dependencies.rustc-hash]
version = "2.1.1"