-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
26 lines (24 loc) · 825 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
[package]
name = "ncbitaxonomy"
description = "Read NCBI Taxonomy Database from files and work with NCBI Taxonomy DB"
documentation = "https://docs.rs/ncbitaxonomy" # TODO: write better docs!!
version = "1.0.7"
authors = ["Peter van Heusden <pvh@sanbi.ac.za>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/pvanheus/ncbitaxonomy"
keywords = ["bioinformatics", "taxonomy"]
categories = ["command-line-utilities", "parser-implementations", "science"]
default-run = "taxonomy_util"
[badges]
circle-ci = { repository = "pvanheus/ncbitaxonomy", branch = "master" }
[dependencies]
thiserror = "~1.0"
indextree = "~3"
bio = "~0.25"
clap = "~2.32"
seq_io = "~0.3"
flate2 = "~1"
diesel = { version = "~1", features = ["sqlite"] }
diesel_migrations = { version = "~1", features = ["sqlite"] }
dotenv = "~0.9"