-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (28 loc) · 843 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
[package]
name = "give_a_sheet"
description = "Toolkit for generating input samplesheets for a variety of nf-core pipelines."
version = "0.1.6"
edition = "2021"
license = "MIT"
readme = "README.md"
repository = "https://github.com/nrminor/give-a-sheet"
homepage = "https://github.com/nrminor/give-a-sheet"
documentation = "https://github.com/nrminor/give-a-sheet/blob/main/README.md"
keywords = ["science", "reproducibility", "bioinformatics", "data"]
categories = ["command-line-utilities", "science"]
[dependencies]
clap = { version = "4.4.3", features = ["derive", "cargo"] }
clap-verbosity-flag = "2.2.0"
color-eyre = "0.6.3"
glob = "0.3.1"
rayon = "1.9.0"
regex = "1.10.4"
tracing = "0.1.40"
[profile.dev.package.backtrace]
opt-level = 3
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip = "symbols"