Files
another-asteroids/Cargo.toml
Robert Garrett 94e0cd0999
All checks were successful
Basic checks / Basic build-and-test supertask (push) Successful in 7m25s
Add my own crate features to pass through to deps
Closes #20

Now this crate can be told to build with or without certain behavior,
rather than needing to patch the Cargo.toml file.
2025-08-14 10:34:03 -05:00

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"]