Skip to main content

Rust

Rust is a multi-paradigmsystem programming language focused on safety, especially safe concurrency.Rust is syntactically similar to C++, but is designed to provide better memory safety while maintaining high performance.

Rust was originally designed by Graydon Hoare at Mozilla Research, with contributions from Dave Herman, Brendan Eich, and others.The designers refined the language while writing the Servo layout or browser engine, and the Rust compiler. The compiler is free and open-source softwaredual-licensed under the MIT License and Apache License 2.0.

Rust has been the "most loved programming language" in the Stack Overflow Developer Survey every year since 2016.

Tools

Dioxus | An elegant GUI library for Rust

Cargo: the Rust build tool and package manager

When you install Rustup you'll also get the latest stable version of the Rust build tool and package manager, also known as Cargo. Cargo does lots of things:

  • build your project withcargo build
  • run your project withcargo run
  • test your project withcargo test
  • build documentation for your project withcargo doc
  • publish a library to crates.io withcargo publish