-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
62 lines (60 loc) · 1.61 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[package]
name = "ska"
version = "0.3.11"
authors = [
"John Lees <[email protected]>",
"Simon Harris <[email protected]>",
"Johanna von Wachsmann <[email protected]>",
"Tommi Maklin <[email protected]>",
"Joel Hellewell <[email protected]>",
"Timothy Russell <[email protected]>",
"Romain Derelle <[email protected]>",
"Nicholas Croucher <[email protected]>"
]
edition = "2021"
description = "Split k-mer analysis"
repository = "https://github.com/bacpop/ska.rust/"
homepage = "https://bacpop.org/software/"
license = "Apache-2.0"
readme = "README.md"
include = [
"/Cargo.toml",
"/LICENSE",
"/NOTICE",
"/src",
"/tests"
]
keywords = ["bioinformatics", "genomics", "sequencing", "k-mer", "alignment"]
categories = ["command-line-utilities", "science"]
[dependencies]
# i/o
needletail = { version = "0.5.1", features = ["compression"] }
serde = { version = "1.0", features = ["derive"] }
ciborium = "0.2"
noodles-vcf = "0.49"
snap = "1.1"
# logging
log = "0.4"
simple_logger = { version = "4", features = ["stderr"] }
indicatif = { version = "0.17", features = ["rayon"]}
# cli
clap = { version = "4.5", features = ["derive"] }
regex = "1.10"
# parallelisation
rayon = "1.8"
num_cpus = "1.0"
# data structures
hashbrown = "0.14"
ahash = ">=0.8.7"
ndarray = { version = "0.15", features = ["serde", "rayon"] }
num-traits = "0.2"
# coverage model
libm = "0.2"
argmin = { version = "0.9", features = ["slog-logger"] }
argmin-math = "0.3"
[dev-dependencies]
# testing
snapbox = "0.4.3"
predicates = "2.1.5"
assert_fs = "1.0.10"
pretty_assertions = "1.3.0"