suffix_array 0.3.1

Suffix array construction and searching algorithms for in-memory binary data, focusing on space efficiency.
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 believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)

[package]
edition = "2018"
name = "suffix_array"
version = "0.3.1"
authors = ["hucsmn <hucsmn@hotmail.com>"]
description = "Suffix array construction and searching algorithms for in-memory binary\ndata, focusing on space efficiency.\n"
homepage = "https://github.com/hucsmn/suffix_array"
readme = "README.md"
keywords = ["suffix_array", "binary", "sais"]
categories = ["algorithms"]
license = "MIT"
repository = "https://github.com/hucsmn/suffix_array"

[[bench]]
name = "sa_search"
harness = false

[[bench]]
name = "sa_construct"
harness = false
[dependencies.bincode]
version = "1.1"
optional = true

[dependencies.bitpacking]
version = "0.6"
optional = true

[dependencies.rayon]
version = "1.0"
optional = true

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
[dev-dependencies.criterion]
version = "0.2"

[dev-dependencies.flate2]
version = "1"

[dev-dependencies.proptest]
version = "0.9"

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

[dev-dependencies.rental]
version = "0.5"

[dev-dependencies.reqwest]
version = "0.9"

[features]
default = ["rayon"]
pack = ["bitpacking", "serde", "bincode"]