forked from 10XGenomics/fastq_set
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
52 lines (45 loc) · 1.41 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
[package]
name = "fastq_set"
version = "0.5.0"
authors = ["Patrick Marks <patrick@10xgenomics.com>", "Sreenath Krishnan <sreenath.krishnan@10xgenomics.com>"]
edition = "2018"
license = "MIT"
description = "Utilities for reading groups of FASTQ files from different sequencing reads of the same library molecule. Encodes filename conventions used by `bcl2fastq` from Illumina"
repository = "https://github.com/10XGenomics/fastq_set"
keywords = ["bioinformatics", "DNA", "sequencing"]
readme = "README.md"
include = ["src/**/*", "LICENSE.txt", "README.md"]
[dependencies]
ordered-float = "1"
flate2 = { version = "^1.0", features = ["zlib"], default-features = false }
serde_derive = "*"
serde = "*"
bytes = { version = ">=0.5, <2", features = ["serde"] }
failure = { version = "0.1", features = ["backtrace"] }
regex = { version = "1", default-features = false, features = ["std", "perf"] }
lazy_static = "1"
rand = ">=0.7, <2"
rand_xorshift = ">=0.2"
itertools = ">=0.8"
lz4 = "*"
fastq = "^0.6"
bio = ">=0.33.0, <2"
[dev-dependencies]
file_diff = "1.0"
glob = ">=0.3, <2"
criterion = "0.3"
bincode = "*"
psutil = ">=2.0"
pretty_assertions = "0.7.2"
serde_json = "*"
[[bench]]
name = "benchmarks"
harness = false
[[bench]]
name = "array_bench"
harness = false
[dev-dependencies.proptest]
version = "1"
default-features = false
# Enable all default features not known to break code coverage builds
features = ["default-code-coverage"]