[package]
edition = "2024"
rust-version = "1.91"
name = "rsomics-seq-stats"
version = "0.1.0"
authors = ["Zane Leong <efd@live.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Quick stats for any FASTA/FASTQ — count, total bp, N50, GC%, min/max/mean length"
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/omics-rust/rsomics-world"
[lib]
name = "rsomics_seq_stats"
path = "src/lib.rs"
[[bin]]
name = "rsomics-seq-stats"
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.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"