Skip to content
This repository was archived by the owner on Dec 6, 2024. It is now read-only.

Commit 5b9f9a9

Browse files
committed
feat: Tidy Cargo.toml
1 parent 0818448 commit 5b9f9a9

File tree

1 file changed

+22
-30
lines changed

1 file changed

+22
-30
lines changed

Cargo.toml

+22-30
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,40 @@
11
[package]
22
name = "fastq_set"
3-
version = "0.5.3"
4-
authors = [
5-
"Patrick Marks <patrick@10xgenomics.com>",
6-
"Sreenath Krishnan <sreenath.krishnan@10xgenomics.com>",
7-
]
8-
edition = "2021"
9-
license = "MIT"
3+
authors = ["10x Genomics"]
104
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"
11-
repository = "https://github.com/10XGenomics/fastq_set"
5+
edition = "2021"
6+
include = ["src/**/*", "LICENSE.txt", "README.md"]
127
keywords = ["bioinformatics", "DNA", "sequencing"]
8+
license = "MIT"
139
readme = "README.md"
14-
include = ["src/**/*", "LICENSE.txt", "README.md"]
15-
10+
repository = "https://github.com/10XGenomics/fastq_set"
1611
resolver = "2"
12+
version = "0.5.3"
1713

1814
[dependencies]
19-
flate2 = { version = "^1.0", features = ["zlib"], default-features = false }
20-
serde_derive = "*"
21-
serde = "*"
22-
bytes = { version = ">=0.5, <2", features = ["serde"] }
2315
anyhow = { version = "1", features = ["backtrace"] }
24-
regex = { version = "1", default-features = false, features = ["std", "perf"] }
25-
lazy_static = "1"
26-
rand = ">=0.7, <2"
27-
rand_xorshift = ">=0.2"
16+
bio = "2"
17+
bytes = { version = "1", features = ["serde"] }
18+
fastq = "0.6"
19+
flate2 = { version = "1", features = ["zlib"], default-features = false }
2820
itertools = ">=0.10,<0.13"
29-
lz4 = "*"
30-
fastq = "^0.6"
31-
bio = ">=0.33.0, <3"
21+
lazy_static = "1"
22+
lz4 = "1"
23+
rand = ">=0.7,<1"
24+
rand_xorshift = ">=0.2,<1"
25+
regex = { version = "1", default-features = false, features = ["std", "perf"] }
26+
serde = "1"
27+
serde_derive = "1"
3228
thiserror = "1"
3329

3430
[dev-dependencies]
35-
file_diff = "1.0"
31+
bincode = "1"
3632
criterion = "0.5"
37-
bincode = "*"
38-
libc = ">=0.2"
33+
file_diff = "1.0"
34+
libc = "0.2"
3935
pretty_assertions = "1"
40-
serde_json = "*"
36+
proptest = { version = "1", default-features = false, features = ["std"] }
37+
serde_json = "1"
4138

4239
[[bench]]
4340
name = "benchmarks"
@@ -46,8 +43,3 @@ harness = false
4643
[[bench]]
4744
name = "array_bench"
4845
harness = false
49-
50-
[dev-dependencies.proptest]
51-
version = "1"
52-
default-features = false
53-
features = ["std"]

0 commit comments

Comments
 (0)