22 lines
455 B
TOML
22 lines
455 B
TOML
[package]
|
|
name = "solar-sim"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
bevy = "0.16"
|
|
bevy-inspector-egui = "0.33.1"
|
|
bevy_panorbit_camera = "0.26"
|
|
iyes_perf_ui = "0.5.0"
|
|
|
|
# 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
|
|
|
|
[features]
|
|
default = ["bevy/bevy_dev_tools", "bevy/dynamic_linking"]
|