-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
58 lines (49 loc) · 1.67 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 = "undefended"
version = "0.2.2"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
inspector = ["bevy-inspector-egui"]
debugdump = ["bevy_mod_debugdump"]
[dependencies]
bevy = "0.15"
bevy_rapier3d = { version = "0.28", features = ["debug-render-3d"] }
# See https://github.com/BlackPhlox/bevy_dolly/issues/74
bevy_dolly = { version = "0.0.5", default-features = false, features = [
"drivers",
] }
bevy_asset_loader = "0.22.0"
bevy-inspector-egui = { version = "0.28", optional = true }
# See https://github.com/Leafwing-Studios/leafwing-input-manager/issues/672
leafwing-input-manager = { version = "0.16", default-features = false, features = [
"keyboard",
"gamepad",
] }
bevy-alt-ui-navigation-lite = "0.3"
bevy_mod_debugdump = { version = "0.12", optional = true }
bevy_pipelines_ready = "0.5.0"
bevy_two_entities = "0.3"
bevy-tnua = "0.21.0"
bevy-tnua-physics-integration-layer = "0.5.0"
bevy-tnua-rapier3d = "0.8.0"
bevy_mod_outline = "0.9"
# https://github.com/nicopap/bevy-scene-hook/pull/13
bevy-scene-hook = { git = "https://github.com/AlephCubed/bevy-scene-hook", rev = "7f944bcadd3f4c01cd4b6e436435ee4bda720910" }
rand = "0.8.5"
serde = "*"
ron = "0.8.0"
[target.'cfg(target_arch = "wasm32")'.dependencies]
web-sys = { version = "*", features = ["console", "Window", "Storage"] }
[profile.dist]
inherits = "release"
lto = "thin"
[profile.web-dist]
inherits = "dist"
opt-level = "s"
# Enable only 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