-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (34 loc) · 958 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
35
36
37
38
[package]
name = "schoenerd"
description = "Schoener's D index calculator for niche overlap."
authors = [
"Marco Radocchia <[email protected]>",
"Gaia Di Francescantonio <[email protected]>"
]
version = "0.1.0"
edition = "2021"
rust-version = "1.70.0"
categories = ["command-line-utilities", "science"]
keywords = ["schoener", "index", "niche-overlap"]
repository = "https://github.com/marcoradocchia/schoenerd"
readme = "README.md"
license = "GPL-3.0-only"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
csv = "1.2"
clap = { version = "4.3", features = ["derive"] }
prettytable-rs = "0.10"
[build-dependencies]
csv = "1.2"
clap = { version = "4.3", features = ["derive"] }
clap_complete = "4.3"
clap_mangen = "0.2"
[profile.release]
opt-level = "s"
lto = "fat"
strip = "symbols"
codegen-units = 1
debug = false
debug-assertions = false
panic = "unwind"
incremental = true