[package]
edition = "2018"
name = "hts-sys"
version = "2.2.1"
authors = [
"Christopher Schröder <christopher.schroeder@tu-dortmund.de>",
"Johannes Köster <johannes.koester@tu-dortmund.de>",
]
build = "build.rs"
links = "hts"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "This library provides HTSlib bindings."
documentation = "https://docs.rs/rust-htslib"
readme = "README.md"
keywords = [
"htslib",
"bam",
"bioinformatics",
"pileup",
"sequencing",
]
license = "MIT"
repository = "https://github.com/samtools/htslib.git"
[package.metadata.release]
pre-release-commit-message = "release version {{version}}"
tag-message = "Version {{version}} of Rust-HTSlib."
[features]
bzip2 = ["bzip2-sys"]
curl = [
"curl-sys",
"openssl-sys",
]
default = [
"bzip2",
"lzma",
"curl",
]
gcs = ["curl"]
libdeflate = ["libdeflate-sys"]
lzma = ["lzma-sys"]
s3 = ["curl"]
static = []
[lib]
name = "hts_sys"
path = "src/lib.rs"
[dependencies.bzip2-sys]
version = "0.1.8"
optional = true
[dependencies.curl-sys]
version = "0.4.78"
features = [
"static-curl",
"static-ssl",
"protocol-ftp",
]
optional = true
[dependencies.libdeflate-sys]
version = "1.21.0"
optional = true
[dependencies.libz-sys]
version = "1.1.0"
features = [
"zlib-ng",
"static",
]
default-features = false
[dependencies.lzma-sys]
version = "0.1.16"
features = ["static"]
optional = true
[build-dependencies.bindgen]
version = "0.72.1"
features = ["runtime"]
optional = true
default-features = false
[build-dependencies.cc]
version = "1.0"
features = ["parallel"]
[build-dependencies.fs-utils]
version = "1.1"
[build-dependencies.glob]
version = "0.3.0"
[target.'cfg(all(unix, not(target_os = "macos")))'.dependencies.openssl-sys]
version = "0.9.56"
optional = true