All checks were successful
Basic checks / Basic build-and-test supertask (push) Successful in 7m25s
Closes #20 Now this crate can be told to build with or without certain behavior, rather than needing to patch the Cargo.toml file.
15 lines
265 B
TOML
15 lines
265 B
TOML
[package]
|
|
name = "asteroids"
|
|
version = "0.3.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
bevy = "0.16"
|
|
bevy-inspector-egui = "0.32.0"
|
|
bevy_rapier2d = "0.31.0"
|
|
rand = "0.9.2"
|
|
|
|
[features]
|
|
dynamic_linking = ["bevy/dynamic_linking"]
|
|
debug_ui = ["bevy_rapier2d/debug-render-2d"]
|