[package]
edition = "2021"
rust-version = "1.87"
name = "cealign"
version = "0.1.0"
authors = ["Rodrigo V. Honorato <rvhonorato@protonmail.com>"]
build = false
exclude = [
"data/",
"debug/",
"assets/",
".github/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Implementation of the Combinatorial Extension (cealign) algorithm to align protein structures"
homepage = "https://github.com/rvhonorato/cealign"
documentation = "https://docs.rs/cealign"
readme = "README.md"
keywords = [
"bioinformatics",
"structural-biology",
"structural-alignment",
"cealign",
]
categories = [
"science",
"command-line-utilities",
]
license = "0BSD"
repository = "https://github.com/rvhonorato/cealign"
[features]
plot = ["dep:plotters"]
[lib]
name = "cealign"
path = "src/lib.rs"
[[bin]]
name = "cealign"
path = "src/main.rs"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.env_logger]
version = "0.11"
[dependencies.log]
version = "0.4"
[dependencies.nalgebra]
version = "0.34"
[dependencies.pdbtbx]
version = "0.12"
[dependencies.plotters]
version = "0.3"
optional = true
[dependencies.rand]
version = "0.10"