libsais-rs 0.2.0

Rust translation of libsais for suffix array construction and related transforms
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 = "libsais-rs"
version = "0.2.0"
build = "build.rs"
include = [
    "/Cargo.toml",
    "/README.md",
    "/LICENSE",
    "/build.rs",
    "/src/**",
    "/examples/**",
    "/cprobe/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust translation of libsais for suffix array construction and related transforms"
homepage = "https://github.com/henriksson-lab/libsais-rs"
documentation = "https://docs.rs/libsais-rs"
readme = "README.md"
keywords = [
    "suffix-array",
    "bwt",
    "text",
    "bioinformatics",
]
categories = [
    "algorithms",
    "science",
]
license = "Apache-2.0"
repository = "https://github.com/henriksson-lab/libsais-rs"

[features]
default = []
upstream-c = ["dep:cc"]

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

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

[[example]]
name = "bench_vs_c"
path = "examples/bench_vs_c.rs"
required-features = ["upstream-c"]

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

[dependencies.rayon]
version = "1.10"

[build-dependencies.cc]
version = "1"
optional = true

[profile.release]
lto = "fat"
codegen-units = 1
panic = "abort"