-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
58 lines (50 loc) · 1.13 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
[package]
name = "reggle"
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", default-features = false, features = [
"animation",
"bevy_asset",
"bevy_scene",
"bevy_winit",
"bevy_core_pipeline",
"bevy_pbr",
"bevy_gltf",
"bevy_render",
"bevy_sprite",
"bevy_text",
"bevy_ui",
"png",
"hdr",
"zstd",
"x11",
"ktx2",
"filesystem_watcher",
"tonemapping_luts",
"webgl2",
] }
# Bevy plugins
bevy_prototype_lyon = "0.9"
bevy_kira_audio = { version = "0.16", features = ["ogg"] }
bevy_rapier2d = "0.22"
bevy-inspector-egui = "0.19"
bevy_tweening = "0.8"
fastrand = "2.0"
[features]
dev = ["bevy/bevy_dylib"]
exit_timeout = []
# Enable high optimizations for dependencies (incl. Bevy), but not for our code:
[profile.dev.package."*"]
opt-level = 3
# Enable extra optimizations for release
[profile.release]
lto = "thin"
codegen-units = 1
# No optimizations for faster CI builds
[profile.dev-ci]
inherits = "dev"
opt-level = 0
[profile.dev-ci.package."*"]
opt-level = 0