-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (44 loc) · 1.55 KB
/
Cargo.toml
File metadata and controls
50 lines (44 loc) · 1.55 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
[package]
name = "rasusa"
description = "Randomly subsample reads or alignments"
version = "4.1.0"
authors = ["Michael Hall <michael@mbh.sh>"]
edition = "2018"
repository = "https://github.com/mbhall88/rasusa"
homepage = "https://github.com/mbhall88/rasusa"
readme = "README.md"
keywords = ["bioinformatics", "subsampling", "fastq", "alignment", "coverage"]
categories = ["science", "command-line-utilities"]
license-file = "LICENSE"
exclude = ["tests/cases/*"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[badges]
maintenance = { status = "actively-developed" }
[package.metadata.cargo-shear]
ignored = ["noodles-bgzf"] # it is used by noodles to handle decompression, but not used in the code
[dependencies]
clap = { version = "4.5.60", features = ["derive"] }
regex = "1.12.3"
thiserror = "2.0"
anyhow = "1.0"
needletail = { version = "0.5.1", features = ["compression"] }
rand = "0.10.1"
rand_pcg = "0.10.1"
log = "0.4"
niffler = "2.5"
env_logger = "0.11.9"
noodles-util = { version = "0.78.0", features = ["alignment"] }
noodles = { version = "0.109.0", features = ["bam", "cram", "core", "sam"] }
noodles-bgzf = { version = "0.46.0", features = ["libdeflate"] }
[dev-dependencies]
assert_cmd = "2.2.0"
predicates = "3.1.4"
tempfile = "3.27.0"
[profile.release]
strip = true # https://github.com/johnthagen/min-sized-rust?tab=readme-ov-file#strip-symbols-from-binary
debug = false
lto = true # https://doc.rust-lang.org/cargo/reference/profiles.html
[profile.profiling]
inherits = "release"
debug = true
strip = false