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

Commit 43f9f05

Browse files
authored
feat: Tidy Cargo.toml (#293)
1 parent 0818448 commit 43f9f05

File tree

1 file changed

+30
-38
lines changed

1 file changed

+30
-38
lines changed

Cargo.toml

+30-38
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,15 @@
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"
17-
18-
[dependencies]
19-
flate2 = { version = "^1.0", features = ["zlib"], default-features = false }
20-
serde_derive = "*"
21-
serde = "*"
22-
bytes = { version = ">=0.5, <2", features = ["serde"] }
23-
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"
28-
itertools = ">=0.10,<0.13"
29-
lz4 = "*"
30-
fastq = "^0.6"
31-
bio = ">=0.33.0, <3"
32-
thiserror = "1"
33-
34-
[dev-dependencies]
35-
file_diff = "1.0"
36-
criterion = "0.5"
37-
bincode = "*"
38-
libc = ">=0.2"
39-
pretty_assertions = "1"
40-
serde_json = "*"
12+
version = "0.5.3"
4113

4214
[[bench]]
4315
name = "benchmarks"
@@ -47,7 +19,27 @@ harness = false
4719
name = "array_bench"
4820
harness = false
4921

50-
[dev-dependencies.proptest]
51-
version = "1"
52-
default-features = false
53-
features = ["std"]
22+
[dependencies]
23+
anyhow = { version = "1", features = ["backtrace"] }
24+
bio = "2"
25+
bytes = { version = "1", features = ["serde"] }
26+
fastq = "0.6"
27+
flate2 = { version = "1", features = ["zlib"], default-features = false }
28+
itertools = ">=0.10,<0.13"
29+
lazy_static = "1"
30+
lz4 = "1"
31+
rand = ">=0.7,<1"
32+
rand_xorshift = ">=0.2,<1"
33+
regex = { version = "1", default-features = false, features = ["std", "perf"] }
34+
serde = "1"
35+
serde_derive = "1"
36+
thiserror = "1"
37+
38+
[dev-dependencies]
39+
bincode = "1"
40+
criterion = "0.5"
41+
file_diff = "1.0"
42+
libc = "0.2"
43+
pretty_assertions = "1"
44+
proptest = { version = "1", default-features = false, features = ["std"] }
45+
serde_json = "1"

0 commit comments

Comments
 (0)