biolic 0.1.0

A modular bioinformatics toolkit in Rust for long-read sequence processing
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.85"
name = "biolic"
version = "0.1.0"
authors = ["jpvich"]
build = false
exclude = [
    "biolic_plan.md",
    "prd/",
    ".github/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A modular bioinformatics toolkit in Rust for long-read sequence processing"
homepage = "https://github.com/jpvich/biolic"
documentation = "https://docs.rs/biolic"
readme = "README.md"
keywords = [
    "bioinformatics",
    "fastq",
    "bam",
    "long-reads",
    "genomics",
]
categories = [
    "command-line-utilities",
    "science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/jpvich/biolic"

[features]
default = []
extra-compression = ["dep:niffler"]

[lib]
name = "biolic"
path = "src/lib.rs"

[[bin]]
name = "biolic"
path = "src/main.rs"

[[test]]
name = "cli_tests"
path = "tests/integration/cli_tests.rs"

[[bench]]
name = "stats_bench"
path = "benches/stats_bench.rs"
harness = false

[dependencies.anyhow]
version = "1.0"

[dependencies.clap]
version = "4.5"
features = [
    "derive",
    "env",
]

[dependencies.flate2]
version = "1.0"

[dependencies.indicatif]
version = "0.17"

[dependencies.niffler]
version = "2.6"
optional = true

[dependencies.noodles]
version = "0.85"
features = [
    "fastq",
    "fasta",
]

[dependencies.rand]
version = "0.8"

[dependencies.rayon]
version = "1.10"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "1.0"

[dev-dependencies.assert_cmd]
version = "2.0"

[dev-dependencies.criterion]
version = "0.5"

[dev-dependencies.predicates]
version = "3.1"

[dev-dependencies.tempfile]
version = "3.10"

[profile.bench]
opt-level = 3
lto = "thin"

[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1
strip = true