-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
38 lines (36 loc) · 1.14 KB
/
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
[package]
name = "ontime"
version = "0.3.1"
edition = "2021"
authors = ["Michael Hall <[email protected]>"]
description = "Extract subsets of ONT (Nanopore) reads based on time"
repository = "https://github.com/mbhall88/ontime"
homepage = "https://github.com/mbhall88/ontime"
readme = "README.md"
license-file = "LICENSE"
rust-version = "1.65.0"
keywords = ["bioinformatics", "nanopore", "time", "fastq"]
categories = ["science", "command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
needletail = { version = "0.5", features = ["compression"] }
clap = { version = "4.0.32", features = ["derive"] }
niffler = "2.4.0"
thiserror = "1.0.38"
anyhow = "1.0.68"
log = "0.4.17"
env_logger = "0.10.0"
time = { version = "0.3.36", features = ["parsing", "macros", "formatting"] }
lazy_static = "1.4.0"
regex = "1.7.1"
bstr = "1.1.0"
duration-str = "0.5.0"
itertools = "0.10.5"
noodles-util = { version = "0.34.1", features = ["alignment"] }
noodles-sam = "0.51.0"
[dev-dependencies]
tempfile = "3.3.0"
assert_cmd = "2.0.8"
indoc = "1.0"