-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
executable file
·34 lines (28 loc) · 1.02 KB
/
Cargo.toml
File metadata and controls
executable file
·34 lines (28 loc) · 1.02 KB
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
[package]
name = "kractor"
version = "4.0.0"
edition = "2021"
authors = ["Samuel Sims"]
description = "Extract reads from a FASTQ file based on taxonomic classification via Kraken2."
readme = "README.md"
repository = "https://github.com/Sam-Sims/kractor"
license = "MIT"
keywords = ["kraken", "bioinformatics", "taxonomy", "fastq", "metagenomics"]
categories = ["command-line-utilities", "science"]
documentation = "https://docs.rs/crate/kractor/"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = "0.4.40"
clap = { version = "4.3.36", features = ["derive"] }
crossbeam = "0.8.4"
env_logger = "0.10.0"
fxhash = "0.2.1"
log = "0.4.27"
niffler = { version = "3.0.0", default-features = false, features = ["gz", "bz2"] }
bzip2 = "0.5.2"
flate2 = { version = "1.1.1", features = ["zlib-rs"] }
noodles = { version = "0.97.0", features = ["fastq", "fasta"] }
serde_json = "1.0.140"
serde = { version = "1.0.219", features = ["derive"] }
color-eyre = "0.6.3"
tempfile = "3.19.1"