-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
33 lines (32 loc) · 1018 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
27
28
29
30
31
32
33
[package]
name = "goat-cli"
version = "0.2.5"
authors = [
"Max Brown <[email protected]>",
"Rich Challis <[email protected]>",
"Sujai Kumar <[email protected]>",
"Cibele Sotero-Caio <[email protected]>",
]
edition = "2021"
license = "MIT"
description = "Query metadata for any species across the tree of life."
homepage = "https://github.com/genomehubs/goat-cli/wiki"
repository = "https://github.com/genomehubs/goat-cli"
documentation = "https://genomehubs.github.io/goat-cli/goat_cli/"
keywords = ["goat", "genome", "tree", "ncbi", "genomics"]
categories = ["command-line-utilities", "science"]
[dependencies]
clap = { version = "4.0.22", features = ["cargo"] }
reqwest = "0.11.12"
tokio = { version = "1.12.0", features = ["full"] }
lazy_static = "1.4.0"
serde_json = "1.0"
futures = "0.3.17"
again = "0.1"
async-std = "1.10.0"
indicatif = "0.17.1"
regex = "1.5.4"
tabled = "0.10.0"
rand = "0.8.5"
anyhow = "1.0.75"
owo-colors = { version = "3.5.0", features = ["supports-colors"] }