-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
45 lines (36 loc) · 1.18 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
[package]
name = "folddisco"
version = "1.0.0"
edition = "2021"
authors = ["Hyunbin Kim <[email protected]>", "Rachel Kim <[email protected]>", "Milot Mirdita <[email protected]>"]
description = "A bioinformatics tool for finding discontinuous motifs in protein structures"
repository = "https://github.com/steineggerlab/folddisco"
# test optimization
[profile.test]
# opt-level = 1 # When debugging, use this.
opt-level = 3
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "folddisco"
path = "src/cli/main.rs"
[dependencies]
rand = "0.8.5"
pico-args = { version = "0.5.0", features = ["combined-flags"], path = "lib/pico-args" }
pdbtbx-cif = { version = "0.12.0", path = "lib/pdbtbx-cif" }
rayon = "1.8.0"
byteorder = "1.5.0"
memmap2 = "0.9.0"
rustc-hash = "1.1.0"
peak_alloc = "0.2.1"
flate2 = { version = "1.0.28" }
toml = "0.8.12"
regex = "1.10.4"
petgraph = "0.6.4"
libc = "0.2.155"
dashmap = { version = "6.1.0", features = ["rayon"] }
[build-dependencies]
bindgen = { version = "0.69.4", optional = true }
cmake = { version = "0.1.50", optional = true }
[features]
# default = ["foldcomp"]
foldcomp = ["bindgen", "cmake"]