[package]
name = "small-bwt"
version = "0.2.0"
edition = "2021"
authors = ["Shunsuke Kanda (kampersanda) <shnsk.knd@gmail.com>"]
description = "BWT construction in small space"
license = "MIT OR Apache-2.0"
readme = "README.md"
documentation = "https://docs.rs/small-bwt"
repository = "https://github.com/kampersanda/small-bwt"
homepage = "https://github.com/kampersanda/small-bwt"
keywords = ["compression", "string-processing"]
categories = ["algorithms", "text-processing"]
rust-version = "1.60.0"
[dependencies]
anyhow = "1.0"
[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
zstd = "0.12"
[[bench]]
name = "bench"
harness = false
[workspace]
members = ["tools"]