-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (49 loc) · 1.02 KB
/
Copy pathCargo.toml
File metadata and controls
53 lines (49 loc) · 1.02 KB
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
[package]
name = "tempo-trainer"
version = "0.1.0"
edition = "2024"
[workspace]
members = ["mobile"]
[dependencies]
bevy = { version = "0.16.0-rc.4", default-features = false, features = [
"animation",
"bevy_asset",
"bevy_color",
"bevy_core_pipeline",
"bevy_gilrs",
"bevy_gizmos",
"bevy_gltf",
"bevy_mesh_picking_backend",
"bevy_pbr",
"bevy_picking",
"bevy_render",
"bevy_scene",
"bevy_sprite",
"bevy_sprite_picking_backend",
"bevy_state",
"bevy_text",
"bevy_ui",
"bevy_ui_picking_backend",
"bevy_window",
"bevy_winit",
"custom_cursor",
"default_font",
"hdr",
"multi_threaded",
"png",
"smaa_luts",
"sysinfo_plugin",
"tonemapping_luts",
"webgl2",
"x11",
"bevy_audio",
"vorbis",
] }
## This greatly improves WGPU's performance due to its heavy use of trace! calls
log = { version = "0.4", features = [
"max_level_debug",
"release_max_level_warn",
] }
[profile.web]
inherits = "release"
opt-level = 'z'