[package]
edition = "2021"
rust-version = "1.74"
name = "rustyhmmer"
version = "0.1.3"
authors = ["Sunju Kim <n.e.coli.1822@gmail.com>"]
build = false
include = [
"src/**/*.rs",
"Cargo.toml",
"README.md",
"LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust HMMER3 hmmsearch with byte-identical --tblout output"
homepage = "https://github.com/necoli1822/rustyhmmer"
documentation = "https://docs.rs/rustyhmmer"
readme = "README.md"
keywords = [
"bioinformatics",
"hmmer",
"profile-hmm",
"protein",
"annotation",
]
categories = [
"science",
"command-line-utilities",
]
license = "BSD-3-Clause"
repository = "https://github.com/necoli1822/rustyhmmer"
[lib]
name = "rustyhmmer"
path = "src/lib.rs"
[[bin]]
name = "rustyhmmer-hmmsearch"
path = "src/bin/hmmsearch.rs"
[dependencies.rayon]
version = "1.10"
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1
panic = "abort"
overflow-checks = false