forked from rust-bio/rust-htslib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (41 loc) · 1.15 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
[package]
name = "rust-htslib"
version = "0.22.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"
[dependencies]
libc = "0.2"
libz-sys = "1.0"
bzip2-sys = { version = "0.1.7", optional = true }
lzma-sys = { version = "0.1.10", optional = true }
itertools = "0.8"
quick-error = "1.2"
newtype_derive = "0.1"
custom_derive = "0.1"
url = "1.4"
ieee754 = "0.2"
lazy_static = "0.2"
bitflags = "0.9"
regex = "1.0"
linear-map = "1.2.0"
serde = { version = "^1", optional = true }
bio-types = ">=0.1.1"
[features]
default = ["bzip2", "lzma"]
bzip2 = ["bzip2-sys"]
lzma = ["lzma-sys"]
[dev-dependencies]
tempdir = "0.3"
bincode = "1.0"
serde_json = "1.0"
pretty_assertions = "0.5.1"
[build-dependencies]
fs-utils = "1.0"
bindgen = ">=0.37"
cc = "1.0"