Name oldest viable dependency versions
Semver compatible resolution means I still get the newest, so I want to name the oldest that still works to let Cargo do it's thing.
This commit is contained in:
@@ -6,9 +6,9 @@ license = "AGPL-3.0-only"
|
||||
|
||||
[dependencies]
|
||||
bevy = "0.16"
|
||||
bevy-inspector-egui = "0.32.0"
|
||||
bevy_rapier2d = "0.31.0"
|
||||
rand = "0.9.2"
|
||||
bevy-inspector-egui = "0.32"
|
||||
bevy_rapier2d = "0.31"
|
||||
rand = "0.9"
|
||||
|
||||
[features]
|
||||
default = ["dynamic_linking"]
|
||||
@@ -16,7 +16,7 @@ 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"] }
|
||||
getrandom = { version = "0.3", features = ["wasm_js"] }
|
||||
|
||||
[profile.speedy]
|
||||
inherits = "release"
|
||||
|
||||
Reference in New Issue
Block a user