gbwt 0.3.1

Partial reimplementation of the GBWT. Exposure for the GBZ struct.
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 = "2018"
name = "gbwt"
version = "0.3.1"
authors = ["Jouni Siren <jouni.siren@iki.fi>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Partial reimplementation of the GBWT. Exposure for the GBZ struct."
readme = "README.md"
license = "MIT"
repository = "https://github.com/SauersML/gbz"

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

[[bin]]
name = "benchmark"
path = "src/bin/benchmark.rs"
test = false
bench = false
doc = false
required-features = ["binaries"]

[[bin]]
name = "gbunzip"
path = "src/bin/gbunzip.rs"
test = false
bench = false
doc = false
required-features = ["binaries"]

[[bin]]
name = "gbz-extract"
path = "src/bin/gbz-extract.rs"
test = false
bench = false
doc = false
required-features = ["binaries"]

[dependencies.getopts]
version = "0.2"
optional = true

[dependencies.libc]
version = "0.2"
optional = true

[dependencies.rand]
version = "0.8"
optional = true

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

[dependencies.simple_sds]
version = "0.3.2"
package = "simple-sds-sbwt"

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

[features]
binaries = [
    "getopts",
    "libc",
    "rand",
    "rayon",
]