-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (23 loc) · 736 Bytes
/
Cargo.toml
File metadata and controls
29 lines (23 loc) · 736 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
[package]
name = "game2"
version = "0.1.0"
edition = "2021"
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
inspector = ["bevy-inspector-egui"]
[dependencies]
bevy = { version = "0.7", features = ["dynamic"] }
# bevy = { version = "0.7" }
bevy-inspector-egui = { version = "0.10", optional = true }
# bevy-inspector-egui-rapier = { version = "0.1", features = ["rapier3d"] }
bevy_egui = "0.14"
bevy_ecs_property = { git = "https://github.com/sim82/bevy_crates" }
rand = "0.8"
num-traits = "0.2"
bevy_mod_picking = "0.6"
bevy_rapier3d = { version = "0.13", features = ["simd-stable"] }
multimap = "0.8"