-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
executable file
·59 lines (54 loc) · 1.1 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
[package]
name = "scpcb_redux"
version = "0.1.0"
edition = "2021"
[dependencies]
bevy_b3d = "0.4.0"
bevy_rmesh = "0.4.0"
bevy_directx_mesh = "0.1.0"
avian3d = "0.1.2"
bevy-inspector-egui = "0.25.2"
leafwing-input-manager = "0.15.0"
rand = "0.8.5"
# avi = { version = "0.1.0", path = "../video/avi" }
# image = "0.24.8"
# anyhow = "1.0.79"
[dependencies.bevy]
version = "0.14.1"
default-features = false
features = [
"animation",
"bevy_state",
"bevy_asset",
"bevy_audio",
"bevy_gilrs",
"bevy_scene",
"bevy_winit",
"bevy_core_pipeline",
"bevy_pbr",
"bevy_render",
"bevy_sprite",
"bevy_text",
"bevy_ui",
"multi_threaded",
"png",
"jpeg",
"hdr",
"vorbis",
"x11",
"wayland",
"bevy_gizmos",
"android_shared_stdcxx",
"tonemapping_luts",
"default_font",
"webgl2",
"bevy_debug_stepping",
"wav",
"bevy_dev_tools"
]
# Enable a small amount of optimization in debug mode
[profile.dev]
opt-level = 1
# Enable high optimizations for dependencies (incl. Bevy), but not for our code:
[profile.dev.package."*"]
opt-level = 3