sassy 0.2.0

Approximate string matching using SIMD
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.91"
name = "sassy"
version = "0.2.0"
authors = [
    "Rick Beeloo",
    "Ragnar Groot Koerkamp",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Approximate string matching using SIMD"
readme = "README.md"
keywords = [
    "bioinformatics",
    "string",
    "fuzzy",
    "search",
    "simd",
]
categories = ["science"]
license = "MIT"
repository = "https://github.com/RagnarGrootKoerkamp/sassy"

[features]
avx512 = []
c = []
default = []
python = ["pyo3"]
scalar = ["ensure_simd/scalar"]

[lib]
name = "sassy"
crate-type = [
    "cdylib",
    "rlib",
]
path = "src/lib.rs"

[[bin]]
name = "sassy"
path = "bin/main.rs"

[[example]]
name = "all_vs_all_barcodes"
path = "examples/all_vs_all_barcodes.rs"

[[example]]
name = "modes"
path = "examples/modes.rs"

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

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

[dependencies.clap]
version = "4.5.37"
features = ["derive"]

[dependencies.colored]
version = "3.0.0"

[dependencies.derivative]
version = "2.2.0"

[dependencies.either]
version = "1.15.0"

[dependencies.ensure_simd]
version = "0.1.0"

[dependencies.env_logger]
version = "0.11.8"

[dependencies.itertools]
version = "0.14.0"

[dependencies.log]
version = "0.4.27"

[dependencies.needletail]
version = "0.6.3"

[dependencies.num_cpus]
version = "1.16.0"

[dependencies.pa-types]
version = "1.2.0"

[dependencies.pyo3]
version = "0.27"
features = [
    "extension-module",
    "abi3-py38",
    "generate-import-lib",
]
optional = true

[dependencies.rand]
version = "0.9.0"

[dependencies.rayon]
version = "1.11.0"

[dependencies.wide]
version = "1.1.1"

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

[dev-dependencies.packed-seq]
version = "4.3.0"

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

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

[target.'cfg(all(target_os = "linux", target_arch = "x86_64"))'.dev-dependencies.perfcnt]
version = "0.8.0"

[profile.dist]
lto = true
codegen-units = 1
debug = 0
incremental = false
inherits = "release"

[profile.release]
opt-level = 3
debug = 2
incremental = true