-
-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrate to bevy 0.14 #127
Migrate to bevy 0.14 #127
Conversation
e12e597
to
26d7678
Compare
I am getting stack overflows on running codegen, which is strange, I would expect proper compilation failures |
Oh it looks to be in the active feature computation stage which does make sense as the crate sets some features for bevy which might be out of date |
There seems to be a dependency loop in bevy, or at least in the way the dependncies are processed |
It seems to have been an issue in the way we computed dependencies, since dev dependencies were included and that lead to inifnite cycles between a crate and itself (bevy_math). It seems we get compilation errors on bevy from new rust compiler features, so I do need to upgrade the codegen nightly version |
…rap into nearest target
This seems to be working now, examples are working fine |
I'm positively giddy about this! |
Got a chance to kick the tires and successfully updated my project to use the main branch and bevy 0.14. No issues on my end. |
Will fix #124