[package]
name = "rust-ise"
version = "0.2.3"
edition = "2021"
rust-version = "1.74"
authors = ["Sunju Kim <n.e.coli.1822@gmail.com>"]
description = "Fast Rust-native ISEScan-equivalent insertion-sequence (IS) scanner for bacterial (meta)genomes: rustygal ORFs + MMseqs2 profile search + native affine-SW terminal inverted repeats."
license = "GPL-3.0-or-later"
readme = "README.md"
repository = "https://github.com/necoli1822/rust-ise"
homepage = "https://github.com/necoli1822/rust-ise"
keywords = ["bioinformatics", "insertion-sequence", "metagenomics", "transposon", "genomics"]
categories = ["science", "command-line-utilities"]
exclude = [
"out_*", "*.time", "target", "compare_*.py", "run_*.sh", "*_results.tsv",
"DEPLOY_TASKS.md",
]
[lib]
name = "rust_ise"
path = "src/lib.rs"
[[bin]]
name = "rust-ise"
path = "src/main.rs"
[dependencies]
rayon = "1.10"
rustygal = "0.2.0"
phf = "0.11"
poasta = "0.1.0"
sha2 = "0.10"
zip = { version = "0.6", default-features = false, features = ["deflate"] }
[build-dependencies]
phf_codegen = "0.11"
[profile.release]
lto = "fat"
codegen-units = 1
opt-level = 3
[workspace]