fuzzies 0.2.1

A fast, memory-mapped fuzzy search dictionary using FSTs and Levenshtein automata.
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"
name = "fuzzies"
version = "0.2.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast, memory-mapped fuzzy search dictionary using FSTs and Levenshtein automata."
documentation = "https://docs.rs/fuzzies"
readme = "README.md"
keywords = [
    "fst",
    "levenshtein",
    "search",
]
categories = [
    "algorithms",
    "data-structures",
]
license = "MIT"
repository = "https://github.com/Isvane/fuzzies"

[lib]
name = "fuzzies"
path = "src/lib.rs"

[[bench]]
name = "dict_bench"
path = "benches/dict_bench.rs"
harness = false

[dependencies.fst]
version = "0.4.7"

[dependencies.levenshtein_automata]
version = "0.2.1"

[dependencies.memmap2]
version = "0.9.10"

[dependencies.rayon]
version = "1.12.0"

[dev-dependencies.criterion]
version = "0.8.2"
features = ["html_reports"]

[dev-dependencies.tempfile]
version = "3.27.0"