-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (37 loc) · 975 Bytes
/
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
[package]
name = "bio-jtools"
version = "0.2.1"
authors = ["James Hawley <[email protected]>"]
edition = "2021"
description = "A suite of bioinformatics tools for interacting with high throughput sequencing data"
license = "MIT"
repository = "https://gitlab.com/jrhawley/bio-jtools/"
homepage = "https://gitlab.com/jrhawley/bio-jtools/"
readme = "README.md"
categories = ["command-line-utilities", "science"]
keywords = ["bioinformatics", "cli", "fastq"]
include = [
"src/**/*",
"Cargo.toml",
"README.md"
]
[dependencies]
bam = "0.1"
chrono = { version = "0.4", default-features = false }
clap = { version = "4", features = ["derive"] }
clap-verbosity-flag = "1.0.0"
flate2 = "1"
indoc = "0.3"
itertools = "0.9"
needletail = { version = "0.4", features = ["compression"] }
regex = "1"
walkdir = "2.3"
thiserror = "1.0.31"
anyhow = "1.0.65"
[[bin]]
name = "bjt"
path = "src/main.rs"
[build-dependencies]
cargo-make = "0.36"
[dev-dependencies]
cargo-nextest = "0.9"