-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
62 lines (58 loc) · 1.44 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
57
58
59
60
61
62
[workspace]
members = [
"crates/ferritin-bevy",
"crates/ferritin-cellscape",
"crates/ferritin-core",
"crates/ferritin-examples",
"crates/ferritin-molviewspec",
"crates/ferritin-onnx-models",
"crates/ferritin-plms",
"crates/ferritin-pymol",
"crates/ferritin-test-data",
]
resolver = "2"
[workspace.package]
version = "0.2.0-dev"
authors = ["Zach Charlop-Powers<[email protected]>"]
description = "Protein Manipulaton and visualization tools"
license = "MIT OR Apache-2.0"
edition = "2021"
[workspace.dependencies]
anyhow = "1.0"
bevy = "0.15.1"
bitflags = "2.7.0"
bon = "3.3.2"
candle-core = "0.8.2"
candle-examples = "0.8.1"
candle-metal-kernels = "0.8.2"
candle-nn = "0.8.2"
candle-onnx = "0.8.2"
candle-transformers = "0.8.2"
chrono = "0.4.39"
clap = { version = "4.5.26", features = ["derive"] }
geo = "0.29.3"
hf-hub = "0.4.1"
itertools = "0.14.0"
lazy_static = "1.5.0"
ndarray = "0.16"
ndarray-safetensors = "0.2.2"
once_cell = "1.20.2"
ort = "=2.0.0-rc.9"
pdbtbx = "0.12.0"
rand = "0.8.5"
safetensors = "0.4.5"
serde-pickle = "1.2"
serde_bytes = "0.11.15"
serde_json = "1.0.135"
serde_repr = "0.1.19"
strum = { version = "0.26", features = ["derive"] }
svg = "0.18.0"
tempfile = "3.15.0"
urlencoding = "2.1.3"
validator = { version = "0.19.0", features = ["derive"] }
[workspace.dependencies.serde]
version = "1.0"
features = ["derive"]
[workspace.dependencies.tokenizers]
version = "0.21.0"
default-features = false