-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
45 lines (38 loc) · 959 Bytes
/
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
[package]
name = "bamtofastq"
version = "1.4.1"
authors = ["Patrick Marks <[email protected]>"]
license = "MIT"
repository = "https://github.com/10XGenomics/bamtofastq.git"
edition = "2021"
include = ["src/**/*", "LICENSE", "README.md"]
resolver = "2"
[features]
default = ["bzip2", "lzma", "libdeflate"]
bzip2 = ["rust-htslib/bzip2"]
lzma = ["rust-htslib/lzma", "bzip2"]
libdeflate = ["rust-htslib/libdeflate"]
curl = ["rust-htslib/curl"]
[dependencies]
docopt = "*"
rust-htslib = { version = "0.44", default-features = false }
flate2 = { version = "1.0", features = ["zlib"], default-features = false }
libz-sys = "1.1.12"
shardio = "0.8.2"
bincode = "1"
itertools = ">=0.8.0"
regex = "*"
tempfile = "*"
backtrace = "0.3"
csv = "1.2.2"
serde = "^1.0.152"
serde_derive = "^1"
serde_bytes = "*"
anyhow = { version = "1.0", features = ["backtrace"] }
[profile.release]
debug = 1
lto = true
[profile.dev]
opt-level = 3
[profile.test]
opt-level = 3