forked from rust-bio/rust-htslib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (45 loc) · 1.29 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "rust-htslib"
version = "0.26.1-alpha.0"
authors = ["Christopher Schröder <christopher.schroeder@tu-dortmund.de>", "Johannes Köster <johannes.koester@tu-dortmund.de>"]
build = "build.rs"
description = "This library provides HTSlib bindings and a high level Rust API for reading and writing BAM files."
readme = "README.md"
keywords = ["htslib", "bam", "bioinformatics", "pileup", "sequencing"]
license = "MIT"
repository = "https://github.com/rust-bio/rust-htslib.git"
documentation = "https://docs.rs/rust-htslib"
edition = "2018"
[dependencies]
libc = "0.2"
libz-sys = "1.0"
bzip2-sys = { version = "0.1", optional = true }
lzma-sys = { version = "0.1", optional = true }
itertools = "0.8"
newtype_derive = "0.1"
custom_derive = "0.1"
url = "2.1"
ieee754 = "0.2"
lazy_static = "1.4"
bitflags = "1.2"
regex = "1.3"
linear-map = "1.2"
serde = { version = "^1", optional = true }
bio-types = ">=0.5.1"
snafu = "0.5"
[features]
default = ["bzip2", "lzma"]
bzip2 = ["bzip2-sys"]
lzma = ["lzma-sys"]
[dev-dependencies]
tempdir = "0.3"
bincode = "1.2"
serde_json = "1.0"
pretty_assertions = "0.6"
[build-dependencies]
fs-utils = "1.1"
bindgen = "0.51.0"
cc = "1.0"
[package.metadata.release]
pre-release-commit-message = "release version {{version}}"
tag-message = "Version {{version}} of Rust-HTSlib."