-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (27 loc) · 993 Bytes
/
Copy pathCargo.toml
File metadata and controls
32 lines (27 loc) · 993 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
[package]
name = "evo"
version = "0.1.0"
edition = "2021"
[dependencies]
bevy = "0.15.1"# {git = "https://github.com/bevyengine/bevy", branch = "main" }
bevy_midi = { git = "https://github.com/Maxbeth2/bevy_midi", branch = "main" }
midir = "0.10.1"
ndarray = { version = "0.16.1", features = ["serde", "blas"] }
ndarray-rand = "0.15.0"
bevy-trait-query = { git = "https://github.com/joseph-gio/bevy-trait-query", branch="main" }
bevy-inspector-egui = "=0.28.1"
poisson-diskus = "1.0.0"
rayon = "1.10.0"
serde = "1.0.217"
serde_json = "1.0.137"
bevy_flycam = { git = "https://github.com/sburris0/bevy_flycam" }
ndarray-npy = "0.9.1"
avian3d = { git = "https://github.com/Jondolf/avian", branch = "main" }
blas-src = { version = "0.9", features = ["openblas"] }
bevy_mod_osc = "0.3.0"
# Enable a small amount of optimization in the dev profile.
[profile.dev]
opt-level = 1
# Enable a large amount of optimization in the dev profile for dependencies.
[profile.dev.package."*"]
opt-level = 3