[package]
edition = "2024"
name = "mafft"
version = "0.2.0"
authors = ["Lucas Goiriz <lucas.goiriz@csic.es>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "MAFFT multiple sequence alignment — high-level Rust API (re-exports mafft-core, mafft-types, mafft-io)"
homepage = "https://github.com/luksgrin/rust-MAFFT"
readme = "README.md"
keywords = [
"bioinformatics",
"alignment",
"msa",
"fasta",
"mafft",
]
categories = [
"science",
"command-line-utilities",
]
license = "MIT AND BSD-3-Clause"
repository = "https://github.com/luksgrin/rust-MAFFT"
resolver = "2"
[features]
cli = ["dep:mafft-rs"]
fp-contract-fma = [
"mafft-core/fp-contract-fma",
"mafft-types/fp-contract-fma",
"mafft-io/fp-contract-fma",
"mafft-rs?/fp-contract-fma",
]
fp-contract-none = [
"mafft-core/fp-contract-none",
"mafft-types/fp-contract-none",
"mafft-io/fp-contract-none",
"mafft-rs?/fp-contract-none",
]
[lib]
name = "mafft"
path = "src/lib.rs"
[dependencies.mafft-core]
version = "0.2.0"
[dependencies.mafft-io]
version = "0.2.0"
[dependencies.mafft-rs]
version = "0.2.0"
optional = true
[dependencies.mafft-types]
version = "0.2.0"