All checks were successful
Basic checks / Basic build-and-test supertask (push) Successful in 6m23s
The only real change was the addition of some CSS. I'm recording the lockfile so that consumers can more reliably build the same binary each time.
36 lines
666 B
TOML
36 lines
666 B
TOML
[package]
|
|
name = "asteroids"
|
|
version = "0.4.0"
|
|
edition = "2024"
|
|
license = "AGPL-3.0-only"
|
|
|
|
[dependencies]
|
|
bevy = "0.16"
|
|
bevy-inspector-egui = "0.32.0"
|
|
bevy_rapier2d = "0.31.0"
|
|
rand = "0.9.2"
|
|
|
|
[features]
|
|
default = ["dynamic_linking"]
|
|
dynamic_linking = ["bevy/dynamic_linking"]
|
|
debug_ui = ["bevy_rapier2d/debug-render-2d"]
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
getrandom = { version = "0.3.3", features = ["wasm_js"] }
|
|
|
|
[profile.speedy]
|
|
inherits = "release"
|
|
codegen-units = 1
|
|
lto = "fat"
|
|
opt-level = 3
|
|
strip = "symbols"
|
|
panic = "abort"
|
|
|
|
[profile.tiny]
|
|
inherits = "release"
|
|
codegen-units = 1
|
|
lto = "fat"
|
|
opt-level = "z"
|
|
strip = "symbols"
|
|
panic = "abort"
|