difflib-fast 0.3.5

Fast, byte-for-byte exact difflib Ratcliff–Obershelp (gestalt) similarity ratio + single-linkage clustering (suffix automaton), plus an exact all-pairs weighted-cosine similarity join (L2AP, CPU+GPU).
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 = "2021"
name = "difflib-fast"
version = "0.3.5"
authors = ["prostomarkeloff"]
build = false
exclude = ["/benchmarks"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast, byte-for-byte exact difflib Ratcliff–Obershelp (gestalt) similarity ratio + single-linkage clustering (suffix automaton), plus an exact all-pairs weighted-cosine similarity join (L2AP, CPU+GPU)."
readme = "README.md"
keywords = [
    "difflib",
    "similarity",
    "ratcliff-obershelp",
    "suffix-automaton",
    "fuzzy",
]
categories = [
    "algorithms",
    "text-processing",
]
license = "MIT"
repository = "https://github.com/prostomarkeloff/difflib-fast"

[features]
bench = ["dep:mimalloc"]
default = []
gpu = ["dep:metal"]
instrument = []
profiling = []
python = ["dep:pyo3"]

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

[[bin]]
name = "bench"
path = "src/bin/bench.rs"
required-features = ["bench"]

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

[[example]]
name = "simjoin_gpu_bench"
path = "examples/simjoin_gpu_bench.rs"
required-features = ["gpu"]

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

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

[dependencies.mimalloc]
version = "0.1"
optional = true
default-features = false

[dependencies.pyo3]
version = "0.28"
features = [
    "extension-module",
    "abi3-py39",
]
optional = true

[dependencies.rayon]
version = "1"

[target.'cfg(target_os = "macos")'.dependencies.metal]
version = "0.33"
optional = true

[lints.clippy.all]
level = "deny"
priority = -1

[lints.clippy.pedantic]
level = "deny"
priority = -1

[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ['cfg(feature, values("cargo-clippy"))']

[profile.release]
debug = "line-tables-only"
strip = false