You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/learn/quick-start/getting-started/_index.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,6 +49,14 @@ You can also speed up compile times by following the ["fast compiles"] section.
49
49
cargo run --example breakout
50
50
```
51
51
52
+
{% callout(type="warning") %}
53
+
When using Rust `1.89+` and Bevy `0.16.x or earlier` the examples will not run and instead error. For more info on *why* see the issue: [bevyengine/bevy#20475 "0.16 fails to build breakout example due to bevy_mikktspace not compiling on Rust 1.89"](<https://github.com/bevyengine/bevy/issues/20475>)
54
+
55
+
Some workarounds:
56
+
- Use Rust 1.88 or earlier using this command: `rustup default 1.88.0`
57
+
- Use Rust 1.88 *only*in your Bevy Engine directory using this command: `rustup override set 1.88` (See https://rust-lang.github.io/rustup/overrides.html#directory-overrides for more on this)
58
+
{% end %}
59
+
52
60
### Add Bevy as a Dependency
53
61
54
62
Bevy is [available as a library on crates.io](https://crates.io/crates/bevy).
0 commit comments