Building a game in Rust

Florian Garcia published on
1 min, 188 words

With my friend Thomas Toledo-Pierre, we started a series of live coding sessions on Twitch to learn Rust.

First steps with Rust

In our first series we learned Rust by building a peer to peer chat in the browser. Unfortunately I don't have the records of those lives but you can find the code in this GitHub repository.

We went over the basics of Rust and used some tools/libraries like:

  • Yew
  • web-sys
  • wasm-bindgen
  • WebRTC

Building a game

After this successful first project, we decided to tackle a new challenge: building a game. And this time we recorded everything. The project uses Bevy, a game engine for Rust and unfortunately we didn't have the time to finish it during the live.

You can take a look at the replays in the following playlist.

The code is also available in this GitHub repository.

Maybe one day I will take the time to finish it, but it was an interesting way to learn Rust.