1
1
[package ]
2
2
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" ]
10
4
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" ]
12
7
keywords = [" bioinformatics" , " DNA" , " sequencing" ]
8
+ license = " MIT"
13
9
readme = " README.md"
14
- include = [" src/**/*" , " LICENSE.txt" , " README.md" ]
15
-
10
+ repository = " https://github.com/10XGenomics/fastq_set"
16
11
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"
41
13
42
14
[[bench ]]
43
15
name = " benchmarks"
@@ -47,7 +19,27 @@ harness = false
47
19
name = " array_bench"
48
20
harness = false
49
21
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