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]
|
[dependencies]
|
||||||
bevy = "0.16"
|
bevy = "0.16"
|
||||||
bevy-inspector-egui = "0.32.0"
|
bevy-inspector-egui = "0.32"
|
||||||
bevy_rapier2d = "0.31.0"
|
bevy_rapier2d = "0.31"
|
||||||
rand = "0.9.2"
|
rand = "0.9"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["dynamic_linking"]
|
default = ["dynamic_linking"]
|
||||||
@@ -16,7 +16,7 @@ dynamic_linking = ["bevy/dynamic_linking"]
|
|||||||
debug_ui = ["bevy_rapier2d/debug-render-2d"]
|
debug_ui = ["bevy_rapier2d/debug-render-2d"]
|
||||||
|
|
||||||
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
||||||
getrandom = { version = "0.3.3", features = ["wasm_js"] }
|
getrandom = { version = "0.3", features = ["wasm_js"] }
|
||||||
|
|
||||||
[profile.speedy]
|
[profile.speedy]
|
||||||
inherits = "release"
|
inherits = "release"
|
||||||
|
|||||||
Reference in New Issue
Block a user