-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (27 loc) · 1.21 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
# ? ----------------------------------------------------------------------------
# ? Workspace general configuration
# ? ----------------------------------------------------------------------------
[workspace]
members = ["core", "ports/cli", "adapters/proc"]
resolver = "2"
# ? ----------------------------------------------------------------------------
# ? Workspace general configuration
# ? ----------------------------------------------------------------------------
[workspace.package]
version = "8.2.0"
edition = "2021"
authors = ["Samuel Galvão Elias <[email protected]>"]
license = "Apache-2.0"
repository = "https://github.com/sgelias/blutils"
readme = "./README.md"
keywords = ["blast", "bioinformativs", "DNA", "similarity-analysis", "NCBI"]
categories = ["science", "command-line-interface", "command-line-utilities"]
# ? ----------------------------------------------------------------------------
# ? Workspace dependencies
# ? ----------------------------------------------------------------------------
[workspace.dependencies]
clap = { version = "4", features = ["derive"] }
mycelium-base = "4.9.0"
subprocess = "0.2"
tracing = "0.1"
tracing-subscriber = { version = "0.3.0", features = ["json", "env-filter"] }