simsearch 0.4.0

A small in-memory fuzzy search index for embedded autocomplete and search suggestions.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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"