[package]
name = "seqtkrs"
version = "0.1.1"
edition = "2021"
authors = ["seqtkrs contributors"]
description = "A Rust reimplementation of seqtk, a fast and lightweight tool for processing biological sequences in FASTA/FASTQ format"
license = "MIT"
repository = "https://github.com/sheny-bio/seqtkrs.git"
homepage = "https://github.com/sheny-bio/seqtkrs.git"
documentation = "https://github.com/sheny-bio/seqtkrs.git"
readme = "README.md"
keywords = ["bioinformatics", "fasta", "fastq", "sequence", "genomics"]
categories = ["command-line-utilities", "science"]
rust-version = "1.80"
[[bin]]
name = "seqtkrs"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.100"
bstr = "1.12.1"
bzip2 = "0.6.1"
clap = { version = "4.5.54", features = ["derive", "cargo"] }
flate2 = "1.1.8"
memchr = "2.7.6"
rand = "0.9.2"
rand_mt = "5.0.0"
rayon = "1.11.0"
rustc-hash = "2.1.1"
thiserror = "2.0.18"
[dev-dependencies]
assert_cmd = "2.0"
criterion = "0.8.1"
predicates = "3.1"
proptest = "1.9.0"
tempfile = "3.24.0"