-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
43 lines (40 loc) · 1.5 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
[package]
name = "wiglrs"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bevy = { version = "0.11.2" }
bevy_rapier2d = "0.22.0"
bevy_egui = "0.21"
bevy_tasks = "0.11.2"
chrono = "0.4.26"
itertools = "0.11.0"
lazy_static = "1.4.0"
nalgebra = "0.32.3"
num-traits = "0.2.16"
rand = "0.8.5"
rand_distr = "0.4.3"
tensorboard-rs = "0.5.9"
serde = { version = "1.0", features = ["derive"] }
kdam = { version = "0.4.1", features = ["rich"] }
# burn = { git = "https://github.com/burn-rs/burn.git", package = "burn" }
# burn-autodiff = { git = "https://github.com/burn-rs/burn.git", package = "burn-autodiff" }
# burn-tch = { git = "https://github.com/burn-rs/burn.git", package = "burn-tch" }
# burn-tensor = { git = "https://github.com/burn-rs/burn.git", package = "burn-tensor" }
petgraph = "0.6.4"
crossbeam-channel = "0.5.8"
tokio = { version = "1.32.0", features = ["sync"] }
futures-lite = "1.13.0"
bevy_framepace = "0.13.3"
derive_more = "0.99.17"
bevy_rand = "0.3.0"
bevy_prng = { version = "0.1.0", features = ["rand_chacha"] }
serde_json = "1.0.105"
serde_yaml = "0.9.25"
candle-core = { git = "https://github.com/huggingface/candle.git", features = ["cuda", "cudnn"], rev = "dabaa479b966296faad294c40b69d321d51ee4df" }
candle-nn = { git = "https://github.com/huggingface/candle.git", features = ["cuda"], rev = "dabaa479b966296faad294c40b69d321d51ee4df" }
# [profile.dev.package."*"]
# opt-level = 3
[profile.release]
debug = true