-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
32 lines (28 loc) · 852 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
[package]
name = "cramino"
version = "0.16.0"
edition = "2021"
authors = ["Wouter De Coster [email protected]"]
license = "MIT"
description = "A tool to quickly extract quality metrics from bam or cram files"
readme = "README.md"
homepage = "https://github.com/wdecoster/cramino"
repository = "https://github.com/wdecoster/cramino"
keywords = ["ont", "pacbio", "cram", "bam", "alignment"]
categories = ["command-line-utilities", "science"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.5.26", features = ["derive"] }
rust-htslib = "0.49.0"
log = "0.4.25"
env_logger = "0.11.6"
chrono = "0.4.22"
rayon = "1.5.3"
arrow = "54.0.0"
unzip-n = "0.1.2"
itertools = "0.14.0"
libz-sys = "1.1.21"
url = "2.5.3"
hts-sys = "2.1.1"
[dev-dependencies]
ctor = "0.2.4"