19 lines
428 B
TOML
19 lines
428 B
TOML
[package]
|
|
name = "game"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
bevy = { version = "0.14.2" }
|
|
bevy_rapier2d = {version = "0.27.0", features = ["debug-render-2d"]}
|
|
bevy_editor_pls = "0.10"
|
|
readformat = "0.1.2"
|
|
|
|
# Enable a small amount of optimization in the dev profile.
|
|
[profile.dev]
|
|
opt-level = 1
|
|
|
|
# Enable a large amount of optimization in the dev profile for dependencies.
|
|
[profile.dev.package."*"]
|
|
opt-level = 3
|
|
|