Can't use an old version of Bevy. #18586
Unanswered
crabdancing
asked this question in
Q&A
Replies: 2 comments 2 replies
-
You could always manually modify and then commit your Cargo.lock file. |
Beta Was this translation helpful? Give feedback.
1 reply
-
you can add each crates you need to your cargo.toml with their exact version for example: bevy = { version = "=0.15.0", features = [
"bevy_animation",
"bevy_asset",
"bevy_audio",
"bevy_color",
"bevy_core_pipeline",
...
] }
bevy_a11y = "=0.15.0"
bevy_asset = "=0.15.0"
... |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
If I try to use an old version of Bevy, like say, this:
It somehow ends up pulling in Bevy 0.15.3 as a dependency for all the sub-crates.
My hypothesis is that it's because the
bevy
main crate doesn't do=0.15.0
for its own deps on other Bevy modules, thus Cargo ends up fetching the latest ones. What's the community's recommended solution to this?Beta Was this translation helpful? Give feedback.
All reactions