Add my own crate features to pass through to deps
All checks were successful
Basic checks / Basic build-and-test supertask (push) Successful in 7m25s
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.
This commit is contained in:
@@ -4,7 +4,11 @@ version = "0.3.0"
|
|||||||
edition = "2024"
|
edition = "2024"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bevy = { version = "0.16", features = ["dynamic_linking"] }
|
bevy = "0.16"
|
||||||
bevy-inspector-egui = "0.32.0"
|
bevy-inspector-egui = "0.32.0"
|
||||||
bevy_rapier2d = { version = "0.31.0", features = ["debug-render-2d"] }
|
bevy_rapier2d = "0.31.0"
|
||||||
rand = "0.9.2"
|
rand = "0.9.2"
|
||||||
|
|
||||||
|
[features]
|
||||||
|
dynamic_linking = ["bevy/dynamic_linking"]
|
||||||
|
debug_ui = ["bevy_rapier2d/debug-render-2d"]
|
||||||
|
|||||||
Reference in New Issue
Block a user