-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
executable file
·40 lines (36 loc) · 1.06 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
38
39
40
[package]
name = "sabreur"
version = "0.6.0"
authors = ["Anicet Ebou <anicet.ebou@gmail.com>"]
edition = "2018"
exclude = ["CODE_OF_CONDUCT.md", "tests/*", "benches/*", ".github/*", ".cargo/*"]
description = "sabreur is a barcode demultiplexing tool for fasta and fastq files"
homepage = "https://github.com/Ebedthan/sabreur"
readme = "README.md"
license = "MIT"
categories = ["command-line-utilities"]
keywords = ["bioinformatics", "demultiplexing"]
[dependencies]
anyhow = "1"
chrono = "0.4"
clap = { version = "4.5", features = ["cargo"] }
exitcode = "1.1.2"
fern = { version = "0.6", features = ["colored"] }
log = "0.4"
niffler = "2.5"
needletail = { version = "0.5", features = ["compression"] }
[dev-dependencies]
criterion = "0.5"
tempfile = "3"
triple_accel = "0.4"
[profile.release]
opt-level = 3
debug = true
overflow-checks = false
lto = 'thin'
panic = 'abort'
incremental = false
[[bin]]
name = "sabreur"
path = "src/main.rs"
bench = false