-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
74 lines (60 loc) · 1.7 KB
/
Copy pathCargo.toml
File metadata and controls
74 lines (60 loc) · 1.7 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[package]
name = "rustqc"
version = "0.2.1"
edition = "2021"
rust-version = "1.87"
authors = ["Phil Ewels <phil.ewels@seqera.io>", "Jon Manning <jonathan.manning@seqera.io>"]
description = "Fast RNA-seq QC in a single pass: dupRadar, featureCounts, 8 RSeQC tools, preseq, samtools stats, and Qualimap — reimplemented in Rust"
license = "GPL-3.0-or-later"
repository = "https://github.com/seqeralabs/RustQC"
readme = "README.md"
keywords = ["bioinformatics", "rna-seq", "duplication", "qc", "rseqc"]
categories = ["command-line-utilities", "science"]
homepage = "https://seqeralabs.github.io/RustQC/"
exclude = ["benchmark/", "docs/", "paper/", "tests/", ".github/", "Dockerfile", ".dockerignore", ".pre-commit-config.yaml", "netlify.toml", "CONTRIBUTING.md", "AGENTS.md"]
[lib]
name = "rustqc"
path = "src/lib.rs"
[[bin]]
name = "rustqc"
path = "src/main.rs"
[dependencies]
# CLI argument parsing
clap = { version = "4", features = ["derive", "env"] }
# BAM file reading
rust-htslib = { version = "1", features = ["static"] }
# Plotting
plotters = { version = "0.3", features = ["fontconfig-dlopen"] }
plotters-backend = "0.3"
plotters-svg = "0.3"
# Configuration
serde = { version = "1", features = ["derive"] }
serde_yaml_ng = "0.10"
dirs = "6"
# Interval trees
coitrees = "0.4"
# Parallelism
rayon = "1.11"
# Random number generation
rand = "0.10"
rand_chacha = "0.10"
# Gzip decompression for .gz annotation files
flate2 = "1"
# General utilities
anyhow = "1"
log = "0.4"
env_logger = "0.11"
indexmap = "2"
crc32fast = "1.5.0"
# Terminal UI
console = "0.15"
indicatif = "0.17"
number_prefix = "0.4"
serde_json = "1"
[build-dependencies]
cc = "1"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true