[package]
edition = "2024"
rust-version = "1.85"
name = "simsearch"
version = "0.4.0"
authors = ["andylokandy <andylokandy@hotmail.com>"]
build = false
exclude = ["books.json"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A small in-memory fuzzy search index for embedded autocomplete and search suggestions."
homepage = "https://github.com/andylokandy/simsearch-rs"
documentation = "https://docs.rs/simsearch"
readme = "README.md"
keywords = [
"fuzzy",
"search",
"lightweight",
"pattern",
"autocomplete",
]
categories = [
"algorithms",
"text-processing",
]
license = "MIT"
repository = "https://github.com/andylokandy/simsearch-rs"
[lib]
name = "simsearch"
path = "src/lib.rs"
[[example]]
name = "books"
path = "examples/books.rs"
[[test]]
name = "lib"
path = "tests/lib.rs"
[[bench]]
name = "lib"
path = "benches/lib.rs"
harness = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
default-features = false
[dependencies.strsim]
version = "0.11"
[dev-dependencies.divan]
version = "0.1"
[dev-dependencies.inquire]
version = "0.7"
[dev-dependencies.itertools]
version = "0.14"
[dev-dependencies.quickcheck]
version = "1"
[dev-dependencies.quickcheck_macros]
version = "1"
[dev-dependencies.serde_json]
version = "1"