[package]
edition = "2021"
name = "gdock"
version = "2.0.0"
authors = ["Rodrigo V. Honorato <rvhonorato@protonmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Information-driven protein-protein docking using a genetic algorithm"
homepage = "https://gdock.org"
readme = "README.md"
keywords = [
"bioinformatics",
"protein",
"docking",
"structural-biology",
"genetic-algorithm",
]
categories = [
"science",
"command-line-utilities",
"algorithms",
"simulation",
]
license = "0BSD"
repository = "https://github.com/rvhonorato/gdock"
[features]
default = ["parallel"]
parallel = ["dep:rayon"]
[lib]
name = "gdock"
path = "src/lib.rs"
[[bin]]
name = "gdock"
path = "src/main.rs"
[dependencies.clap]
version = "4.5"
[dependencies.colored]
version = "2.1"
[dependencies.indicatif]
version = "0.17"
[dependencies.rand]
version = "0.8.5"
[dependencies.rand_distr]
version = "0.4"
[dependencies.rayon]
version = "1.11"
optional = true
[dependencies.regex]
version = "1.12"
[profile.dev]
debug = 2