frizbee 0.10.0

Fast typo-resistant fuzzy matching via SIMD smith waterman, similar algorithm to FZF/FZY
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 = "frizbee"
version = "0.10.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast typo-resistant fuzzy matching via SIMD smith waterman, similar algorithm to FZF/FZY"
readme = "README.md"
keywords = [
    "fuzzy-search",
    "fuzzy-matching",
    "string-matching",
    "simd",
    "smith-waterman",
]
categories = [
    "algorithms",
    "text-processing",
]
license = "MIT"
repository = "https://github.com/saghen/frizbee"

[features]
match_end_col = []
safe_read = []
serde = ["dep:serde"]

[lib]
name = "frizbee"
path = "src/lib.rs"
bench = false

[[test]]
name = "api_properties"
path = "tests/api_properties.rs"

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

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

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true

[dev-dependencies.criterion]
version = "0.8"

[dev-dependencies.nucleo]
version = "0.5.0"

[dev-dependencies.proptest]
version = "1"

[dev-dependencies.rand]
version = "0.10"

[dev-dependencies.rand_distr]
version = "0.6"

[profile.release]
lto = true