forked from VonRosenchild/rust-htslib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
55 lines (49 loc) · 1.57 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
52
53
54
55
[package]
name = "rust-htslib"
version = "0.38.2"
authors = ["Christopher Schröder <[email protected]>", "Johannes Köster <[email protected]>"]
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"
include = ["src/**/*", "LICENSE.md", "README.md", "CHANGELOG.md"]
[workspace]
members = ["hts-sys"]
[package.metadata.release]
pre-release-commit-message = "release version {{version}}"
tag-message = "Version {{version}} of Rust-HTSlib."
[dependencies]
libc = "0.2"
newtype_derive = "0.1"
custom_derive = "0.1"
url = "2.1"
lazy_static = "1.4"
regex = "1.3"
linear-map = "1.2"
serde = { version = "^1", optional = true, features=["derive"] }
serde_bytes = { version = "0.11", optional = true }
bio-types = ">=0.9"
thiserror = "1"
hts-sys = { version = "2.0.1", path = "hts-sys", default-features = false }
derive-new = "0.5"
ieee754 = "0.2"
byteorder = "1.3"
[features]
default = ["bzip2", "lzma", "curl"]
bzip2 = ["hts-sys/bzip2"]
lzma = ["hts-sys/lzma"]
bindgen = ["hts-sys/bindgen"]
curl = ["hts-sys/curl"]
libdeflate = ["hts-sys/libdeflate"]
s3 = ["hts-sys/s3"]
gcs = ["hts-sys/gcs"]
static = ["hts-sys/static"]
serde_feature = ["serde", "serde_bytes", "bio-types/serde"]
[dev-dependencies]
tempfile = "3.1.0"
bincode = "1.2"
serde_json = "1.0"
pretty_assertions = "0.6"