-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (49 loc) · 1.42 KB
/
Cargo.toml
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[package]
name = "bioshell"
version = "4.0.0-dev"
edition = "2021"
description = "Provides the BioShell 4.0 package"
homepage = "https://bioshell.pl"
license = "Apache-2.0"
keywords = ["bioshell"]
build = "build.rs"
[workspace]
members = [
"bioshell-builder",
"bioshell-cif",
"bioshell-clustering",
"bioshell-datastructures",
"bioshell-io",
"bioshell-pdb",
"bioshell-seq",
"bioshell-statistics",
]
[dependencies]
bioshell-io = { path = "./bioshell-io" }
bioshell-seq = { path = "./bioshell-seq" }
bioshell-builder = { path = "./bioshell-builder" }
bioshell-pdb = { path = "./bioshell-pdb" }
bioshell-clustering = { path = "./bioshell-clustering" }
bioshell-statistics = { path = "./bioshell-statistics" }
bioshell-datastructures = { path = "./bioshell-datastructures"}
bioshell-cif = { path = "./bioshell-cif" }
clap = { version = "4.5.20", features = ["derive"] }
rand = { version = "0.8.5", features = [ "small_rng" ] }
rand_distr="0.4.3"
nalgebra = "0.31.1"
env_logger = "0.11.5"
[build-dependencies]
# ---------- for git md5sum and compilation time
chrono = "0.4"
git2 = "0.19.0"
md5 = "0.7"
# ---------- Logging
log = "0.4.0"
env_logger = "0.9.0"
[[bin]]
name = "bioshell"
path = "./bin/bioshell.rs"
[package.metadata.docs.rs]
# To build locally use
# RUSTDOCFLAGS="--html-in-header katex-header.html" cargo doc --no-deps --document-private-items --open
rustdoc-args = ["--html-in-header", "katex-header.html"]