31 lines
841 B
TOML
31 lines
841 B
TOML
[package]
|
|
name = "experiment"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# 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
|
|
|
|
[profile.dev.package.bevy_rapier3d]
|
|
opt-level = 3
|
|
|
|
[dependencies]
|
|
bevy = { version = "0.12", features = []}
|
|
bevy-inspector-egui = "0.21.0"
|
|
bevy_editor_pls = "0.6"
|
|
bevy_rapier3d = { version = "0.23", features = ["debug-render-3d"] }
|
|
bevy_hanabi = { version = "0.8", default-features = false, features = [ "3d" ] }
|
|
bevy-trait-query = "0.4.0"
|
|
bevy_gltf_components = "0.2.0"
|
|
|
|
bitflags = "2.4.1"
|
|
|
|
uuid = { version = "1.6.1", features = [
|
|
"v4", # Lets you generate random UUIDs
|
|
"fast-rng", # Use a faster (but still sufficiently random) RNG
|
|
] } |