Rust

From RogueBasin
Revision as of 18:13, 11 September 2019 by Thebracket (talk | contribs) (Added rltk_rs and associated tutorials)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Rust
Programming Language
Company Mozilla
Influences C/C++, Erlang, Haskell, Standard ML
Updated 2018-08-02 (1.28.0)
(updates every 6 weeks)
Status Stable
Licensing MIT / Apache2
Platforms Linux, OS X, Windows, FreeBSD, Android, Webasm
Official site of Rust


Rust is a systems programming language from Mozilla Research. It is a viable replacement for C++ and is used by Mozilla to write a next-generation web browser engine. Unlike most high-level programming languages that use garbage collection, Rust uses the scope-delimited memory management idiom of C++ with stronger enforcement at the language level. It uses an abstraction idiom similar to Haskell's type classes instead of OO, and supports reasonably extensive generic programming with type parameters that can be constrained to implemented traits. It has a macro system.

The language and type system have been designed to make it impossible to create memory safety violations outside regions explicitly marked as unsafe, while maintaining C++-style explicit memory handling. The cost for this is a somewhat complex core language with various smart pointer types and the occasional need for explicit lifetime annotations.

Writing FFI bindings to C code is easy. The Cargo tool handles builds and dependencies to third-party packages. There is built-in unit test and benchmark support.

Rust Libraries

  • [1] tcod-rs: libtcod 1.5.1 bindings for Rust, last git commit: August 29, 2018
  • [2] rltk-rs: A libtcod-like library for Rust, last git commit: September 11, 2019

Rust Tutorials

Rust Roguelikes

  • [5] phage, 7DRL
  • [6] rhex
  • [7] Roguelike Tutorial, A port of the Complete Roguelike Tutorial, using python+libtcod.
  • [8] rg, still in very early stages

References