-
Notifications
You must be signed in to change notification settings - Fork 158
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (47 loc) · 1.46 KB
/
Cargo.toml
File metadata and controls
51 lines (47 loc) · 1.46 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
[package]
name = "trim-galore"
version = "2.2.0"
edition = "2024"
rust-version = "1.88"
description = "Fast adapter and quality trimming for NGS data — Oxidized Edition"
license = "GPL-3.0-only"
authors = ["Felix Krueger"]
repository = "https://github.com/FelixKrueger/TrimGalore"
homepage = "https://github.com/FelixKrueger/TrimGalore"
keywords = ["bioinformatics", "ngs", "adapter-trimming", "fastq", "quality-trimming"]
categories = ["command-line-utilities", "science"]
readme = "README.md"
exclude = [
"test_files/",
"plans/",
"docs/",
".github/",
".claude/",
"CLAUDE.md",
"CHANGELOG.md",
]
[[bin]]
name = "trim_galore"
path = "src/main.rs"
[dependencies]
clap = { version = "4", features = ["derive"] }
flate2 = { version = "1.1", default-features = false, features = ["zlib-rs"] }
gzp = { version = "2", default-features = false, features = ["deflate_rust"] }
anyhow = "1"
memchr = "2"
log = "0.4"
env_logger = "0.11"
# Bundled FastQC integration. Exact-pin: brand-new crate (v1.0.0 published
# 2026-04-26) — treat upstream bumps as deliberate-test events. See
# /Users/fkrueger/.claude/plans/bundled-fastqc-rust.md for the design notes.
# v1.0.1 (2026-04-26) fixes percentage-precision in >>Overrepresented sequences
# (ewels/FastQC-Rust#2); restored byte-identity to Java FastQC 0.12.1 for that
# section.
fastqc-rust = "=1.0.1"
[dev-dependencies]
serde_json = "1"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = "debuginfo"