You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
676 B
TOML

[package]
name = "engine"
version = "0.1.0"
edition = "2024"
[dependencies]
bevy = { version = "0.19.0", default-features = false, features = [
"2d",
"ui",
"bevy_audio",
"png",
] }
engine_macros = { path = "macros" }
[features]
dev = [
"bevy/dynamic_linking",
"bevy/file_watcher",
"bevy/debug",
"bevy/bevy_light",
"bevy/free_camera",
"bevy/bevy_feathers"
]
web = [
"bevy/bevy_feathers"
]
default = ["bevy/bevy_feathers"]
# 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