-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (25 loc) · 838 Bytes
/
Copy pathCargo.toml
File metadata and controls
27 lines (25 loc) · 838 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
[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.1.0"
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"
edition = "2024"
[badges]
github-actions = { repository = "pvanheus/ncbitaxonomy", workflow = "CI" }
[dependencies]
thiserror = "~2"
indextree = "~4"
bio = "~3"
clap = "~4"
seq_io = "~0.3"
flate2 = "~1"
diesel = { version = "~2", features = ["sqlite"] }
diesel_migrations = { version = "~2", features = ["sqlite"] }
dotenv = "~0.15"