frizbee 0.7.0

Fast 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.7.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast fuzzy matching via SIMD smith waterman, similar algorithm to FZF/FZY"
readme = "README.md"
license = "MIT"
repository = "https://github.com/saghen/frizbee"

[features]
default = ["parallel_sort"]
parallel_sort = ["dep:rayon"]
serde = ["dep:serde"]

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

[[bench]]
name = "interleave"
path = "benches/interleave.rs"

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

[[bench]]
name = "prefilter"
path = "benches/prefilter.rs"

[[bench]]
name = "smith_waterman_iai"
path = "benches/smith_waterman_iai.rs"

[dependencies.multiversion]
version = "0.8.0"

[dependencies.rayon]
version = "1.10.0"
optional = true

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

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

[dev-dependencies.iai-callgrind]
version = "0.14.0"

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

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

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

[profile.release]
lto = true