[package]
edition = "2021"
name = "fxsplit"
version = "0.0.2"
authors = ["alejandrogzi <alejandrxgzi@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "split FASTX into N chunks/files/headers"
homepage = "https://github.com/alejandrogzi/isotools"
readme = "README.md"
keywords = [
"split",
"fasta",
"fastq",
"io",
]
categories = [
"command-line-utilities",
"science",
]
license = "MIT"
repository = "https://github.com/alejandrogzi/isotools"
[lib]
name = "fxsplit"
path = "src/lib.rs"
[[bin]]
name = "fxsplit"
path = "src/main.rs"
[[test]]
name = "smoke_fasta"
path = "tests/smoke_fasta.rs"
[[test]]
name = "smoke_fasta_gz"
path = "tests/smoke_fasta_gz.rs"
[[test]]
name = "smoke_fastq"
path = "tests/smoke_fastq.rs"
[[test]]
name = "smoke_fastq_gz"
path = "tests/smoke_fastq_gz.rs"
[dependencies.anyhow]
version = "1.0.81"
[dependencies.clap]
version = "^4.0"
features = ["derive"]
[dependencies.flate2]
version = "1.0.20"
[dependencies.log]
version = "0.4.14"
[dependencies.memchr]
version = "2.7.4"
[dependencies.memmap2]
version = "0.9.4"
[dependencies.num_cpus]
version = "1.16.0"
[dependencies.rayon]
version = "1.8.1"
[dependencies.simple_logger]
version = "5.0.0"
[dev-dependencies.tempfile]
version = "3.12.0"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1