Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions content/learn/quick-start/getting-started/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,14 @@ You can also speed up compile times by following the ["fast compiles"] section.
cargo run --example breakout
```

{% callout(type="warning") %}
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>)

Some workarounds:
- Use Rust 1.88 or earlier using this command: `rustup default 1.88.0`
- 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)
{% end %}

### Add Bevy as a Dependency

Bevy is [available as a library on crates.io](https://crates.io/crates/bevy).
Expand Down