[package]
edition = "2021"
name = "sa-ord"
version = "0.0.1"
authors = ["Nathan Roach <natproach@gmail.com>"]
publish = true
description = "Pure Rust implementation of the Suffix Array by Induced Sorting algorithm."
homepage = "https://github.com/NatPRoach/sa_ord"
readme = "README.md"
keywords = [
"bioinformatics",
"sa_ord",
"suffix-array",
"suffix",
"array",
]
categories = [
"algorithms",
"science",
"text-processing",
]
license-file = "LICENSE.md"
repository = "https://github.com/NatPRoach/sa_ord"
resolver = "2"
[lib]
name = "sa_ord"
path = "src/sa_ord/mod.rs"
[dependencies.anyhow]
version = "1.0.38"
[dependencies.bitvec]
version = "1.0.0"
[dependencies.itertools]
version = "0.10.1"
[dependencies.thiserror]
version = "1.0.23"
[build-dependencies.built]
version = "0.5"
features = ["git2"]