-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (33 loc) · 1021 Bytes
/
Cargo.toml
File metadata and controls
36 lines (33 loc) · 1021 Bytes
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
[package]
name = "kivvi"
version = "1.0.0"
authors = ["Xiao Chen <xchen@pacificbiosciences.com>"]
description = "Kivvi: KIV2/D4Z4 genotyper using HiFi WGS data"
edition = "2021"
[workspace]
members = ["crates/paraphase"]
[dependencies]
clap = { version = "=4.0", features = ["derive"] }
chrono = "0.4.24"
log = "0.4.17"
env_logger = "0.9.1"
lazy_static = "1.4.0"
itertools = "0.10.5"
url = "2.4.1"
rust-htslib = { version = "0.49.0", default-features = false, features = ["static"] }
minimap2 = { version = "0.1.23", features = ["simde", "htslib", "static"]}
threadpool = "1.8.1"
simple-error = "0.3"
static_assertions = "1.1.0"
serde_json = {version = "1.0.48", features = ["std", "arbitrary_precision"]}
serde = { version = "1.0.104", features = ["derive"] }
regex = "1.3.9"
rand = {version = "0.8.5", features = ["small_rng"]}
tempfile = "3.3.0"
counter = "0.5.7"
bit-vec = "0.6.3"
priority-queue = "1.2.3"
rustc-hash = "1.1.0"
strum_macros = "0.27.1"
thiserror = "1.0.56"
paraphase = { path = "crates/paraphase" }