[package]
edition = "2024"
rust-version = "1.91"
name = "rsomics-fastq-downsample"
version = "0.1.0"
authors = ["Zane Leong <efd@live.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Deterministic random downsampling of FASTQ to a target read count or fraction"
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/omics-rust/rsomics-world"
[lib]
name = "rsomics_fastq_downsample"
path = "src/lib.rs"
[[bin]]
name = "rsomics-fastq-downsample"
path = "src/main.rs"
[[test]]
name = "compat"
path = "tests/compat.rs"
[[test]]
name = "smoke"
path = "tests/smoke.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.needletail]
version = "0.7"
features = ["compression"]
default-features = false
[dependencies.rand]
version = "0.8"
[dependencies.rsomics-common]
version = "0.6"
[dependencies.rsomics-help]
version = "0.3"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"