astraea/Cargo.toml

18 lines
428 B
TOML
Raw Normal View History

2024-10-05 08:41:37 +02:00
[package]
name = "bevy-test"
version = "0.1.0"
edition = "2021"
[dependencies]
bevy = { version = "0.14.2", features = [ "dynamic_linking" ] }
2024-10-05 12:17:55 +02:00
serde = {version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"
2024-10-05 08:41:37 +02:00
# 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