-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (36 loc) · 964 Bytes
/
Cargo.toml
File metadata and controls
41 lines (36 loc) · 964 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "cealign"
version = "0.1.0"
edition = "2021"
rust-version = "1.87"
license = "0BSD"
authors = ["Rodrigo V. Honorato <rvhonorato@protonmail.com>"]
description = "Implementation of the Combinatorial Extension (cealign) algorithm to align protein structures"
repository = "https://github.com/rvhonorato/cealign"
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"]
exclude = ["data/", "debug/", "assets/", ".github/"]
[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"] }
env_logger = "0.11"
log = "0.4"
nalgebra = "0.34"
pdbtbx = "0.12"
plotters = { version = "0.3", optional = true }
rand = "0.10"