-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
41 lines (37 loc) · 1.29 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
41
[package]
name = "seqsizzle" #https://github.com/rust-lang/cargo/issues/9778
version = "0.1.4"
authors = ["Changqing Wang <[email protected]>"]
description = "A pager for viewing FASTQ files with fuzzy matching, allowing different adaptors to be colored differently"
readme = "README.md"
repository = "https://github.com/ChangqingW/SeqSizzle"
license = "AGPL-3.0-or-later"
categories = ["command-line-utilities", "visualization", "science"]
keywords = ["fastq", "pager", "genomic-sequencing", "bioinformatics", "visualization"]
edition = "2021"
build = "src/build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = ">= 1.0.75"
bio = ">= 1"
clap = { version = ">= 4.4.18", features = ["derive"] }
crossterm = ">= 0.27.0"
gcollections = ">= 1.5.0"
intervallum = ">= 1.4.0"
num-traits = ">= 0.2.17"
ratatui = ">= 0.25.0"
rayon = ">= 1.8.0"
tui-textarea = ">= 0.3.1"
shadow-rs = ">= 0.26.1"
csv = ">= 1.3.0"
[dependencies.uuid]
version = ">= 1.6.1"
features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
]
[build-dependencies]
shadow-rs = ">= 0.26.1"
[profile.release]
strip = true