-
Notifications
You must be signed in to change notification settings - Fork 17
/
Cargo.toml
43 lines (38 loc) · 1.22 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
42
43
[package]
name = "rasusa"
description = "Randomly subsample reads or alignments"
version = "2.1.0"
authors = ["Michael Hall <[email protected]>"]
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" }
[dependencies]
clap = { version = "4.5.4", features = ["derive"] }
regex = "1.10.4"
thiserror = "1.0"
anyhow = "1.0"
needletail = { version = "0.5.1", features = ["compression"] }
rand = "0.8.5"
rand_pcg = "0.3.1"
log = "0.4"
niffler = "2.5"
env_logger = "0.11.3"
rust-htslib = { version = "0.46.0", default-features = false, features = ["bzip2", "lzma"] }
[dev-dependencies]
assert_cmd = "2.0.14"
predicates = "3.1.0"
tempfile = "3.10.1"
[profile.release]
strip = true # https://github.com/johnthagen/min-sized-rust?tab=readme-ov-file#strip-symbols-from-binary
[profile.profiling]
inherits = "release"
debug = true
strip = false