-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (40 loc) · 894 Bytes
/
Cargo.toml
File metadata and controls
43 lines (40 loc) · 894 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
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "quatrix"
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.13.2", default-features = false, features = [
"bevy_asset",
"bevy_gilrs",
"bevy_scene",
"bevy_winit",
"bevy_core_pipeline",
"bevy_pbr",
"bevy_render",
"bevy_sprite",
"bevy_text",
"bevy_ui",
"multi-threaded",
"png",
"hdr",
"x11",
"wayland",
"bevy_gizmos",
"android_shared_stdcxx",
"tonemapping_luts",
"webgl2",
"bevy_debug_stepping",
] }
nalgebra = "0.32.5"
thiserror = "1"
rand = "0.8.5"
colorgrad = "0.6.2"
noise = "0.9"
image = "0.24"
strum = { version = "0.26", features = ["derive"] }
bevy_kira_audio = { version = "0.19", features = ["wav"] }
bevy-progressbar = "0.7"
[profile.release]
strip = true
lto = true