forked from unipept/umgap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (35 loc) · 1.12 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
[package]
name = "umgap"
version = "1.0.0"
authors = ["Felix Van der Jeugt <[email protected]>",
"Stijn Seghers <[email protected]>",
"Niels De Graef <[email protected]>",
"Aranka Steyaert <[email protected]>",
"Rien Maertens <[email protected]>"]
description = "The Unipept Metagenomics Analysis Pipeline"
homepage = "https://unipept.ugent.be"
repository = "https://github.com/unipept/umgap"
readme = "README.md"
keywords = ["metagenomics", "transcriptonomics", "bio", "DNA", "unipept"]
categories = ["command-line-utilities", "science"]
license = "MIT"
include = ["Cargo.toml", "LICENSE", "README.md", "scripts/umgap*.sh", "src/**/*.rs"]
edition = "2018"
[dependencies]
clap = "2.33.0"
csv = "1.1.2"
error-chain = "0.12.4"
fst = "0.3.5"
lazy_static = "1.4.0"
ordered-float = "1.0.2"
rayon = "1.3.0"
regex = "1.3.1"
serde_json = "1.0.44"
structopt = "0.3.23"
strum = "0.17.1"
strum_macros = "0.17.1"
attohttpc = { version = "0.15.0", features = [ "json" ] }
hash_index = { path = "../hash-index" }
itertools = "0.7.4"
[dev-dependencies]
assert_matches = "1.3.0"