-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (29 loc) · 864 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
34
[package]
name = "clade"
version = "0.1.3"
edition = "2021"
description = "A tool for phlyo tree, a phylogenetic tree construction software."
license = "MIT"
keywords = ["phylogenetics", "evolution", "tree"]
authors = ["dagou <eric9n@gmail.com>"]
repository = "https://github.com/eric9n/clade"
readme = "README.md"
[dependencies]
reqwest = { version = "0.12", features = ["blocking", "multipart", "gzip"] }
flate2 = "1.0"
tar = "0.4"
regex = "1.5"
chrono = "0.4"
clap = { version = "4.0", features = ["derive"] }
rusqlite = { version = "0.32", features = ["bundled"] }
gtdb_tree = "0.1.9"
[[bin]]
name = "clade"
path = "src/main.rs"
[profile.release]
lto = true
opt-level = "s" # 或者 "z"
debug-assertions = false
# panic = 'abort'
codegen-units = 1 # Compile crates one after another so the compiler can optimize better
strip = true # Remove debug symbols