Rust (programming language)

Rust is a multi-paradigm, general-purpose programming language that emphasizes performance, type safety, and concurrency. It enforces memory safety—meaning that all references point to valid memory—without a garbage collector. To simultaneously enforce memory safety and prevent data races, its "borrow checker" tracks the object lifetime of all references in a program during compilation. Rust was influenced by ideas from functional programming, including immutability, higher-order functions, and algebraic data types. It is popular for systems programming.

Rust
Paradigms
Designed byGraydon Hoare
DeveloperRust Foundation
First appearedMay 15, 2015 (2015-05-15)
Stable release
1.76.0  / February 8, 2024 (February 8, 2024)
Typing discipline
Implementation languageRust
PlatformCross-platform
OSCross-platform
LicenseMIT and Apache 2.0
Filename extensions.rs, .rlib
Websitewww.rust-lang.org
Influenced by
Influenced

Software developer Graydon Hoare created Rust as a personal project while working at Mozilla Research in 2006. Mozilla officially sponsored the project in 2009. In the years following the first stable release in May 2015, Rust was adopted by companies including Amazon, Discord, Dropbox, Google (Alphabet), Meta, and Microsoft. In December 2022, it became the first language other than C and assembly to be supported in the development of the Linux kernel.

Rust has been noted for its rapid adoption, and has been studied in programming language theory research.

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.