← History

Rust 2010

Memory safety without a garbage collector — fearless systems programming.

Paradigmsmulti-paradigm, imperative, functional, concurrent, generic, compiled
Typingstatic, strong, inferred (Hindley–Milner-flavoured local inference), affine via ownership
Extensions.rs .rlib
Created byGraydon Hoare, Mozilla Research, The Rust Project / Rust Foundation

Influenced by: OCaml Go

Rust is a statically typed systems language that guarantees memory and thread safety at compile time without a garbage collector. Its ownership-and-borrowing model and borrow checker eliminate whole classes of bugs — use-after-free, double-free, and data races — while compiling to fast native code with zero-cost abstractions. The result is the rare language that competes with C and C++ on performance yet reads like a modern, ML-flavoured language with sum types, pattern matching, and a first-class build tool.

What makes it distinctive

History

Rust began around 2006 as a personal side project of Graydon Hoare, an engineer at Mozilla. A widely-told origin story has Hoare returning to his Vancouver apartment to find the elevator broken because its software had crashed — a small but pointed illustration of how unsafe systems code fails in the real world. He set out to design a language that delivered C/C++-class control and performance while making memory-corruption bugs and data races unrepresentable rather than merely discouraged.

Mozilla began sponsoring the project in 2009 and announced it publicly in 2010, framing Rust as the foundation for safer, more parallel systems software. The earliest compiler was written in OCaml; it was soon rewritten in Rust itself (a self-hosting bootstrap completed in 2011), and the project adopted LLVM as its backend. Through these early years the language changed dramatically and often broke compatibility — it experimented with a typestate system, a garbage-collected pointer type (@), green threads, and more, most of which were stripped out before stabilization in favour of the lean ownership model Rust is known for today.

The research engine for Rust during this period was Servo, an experimental parallel web-rendering engine Mozilla built in Rust to stress-test the language on a genuinely demanding concurrent codebase. Servo's needs drove much of Rust's design pressure around safe parallelism — the work that the community later branded fearless concurrency.

The pivotal release came on 15 May 2015: Rust 1.0. With it the project made a strong stability promise — code that compiles on a given stable release should keep compiling on later 1.x releases — delivered through a rapid six-week release train of stable, beta, and nightly channels. This combination of a hard backwards-compatibility guarantee with fast iteration is central to how Rust evolves.

To let the language keep growing without breaking that promise, Rust introduced editions: opt-in, per-crate language epochs that can change syntax and idioms while old and new editions interoperate in the same build. The 2018 edition cleaned up the module system and the path/use rules and laid groundwork for async/await (stabilized in 1.39, late 2019). The 2021 edition refined closures (disjoint field capture) and prelude details, and the 2024 edition shipped with Rust 1.85 in February 2025, the largest edition to date.

Governance moved beyond Mozilla over time. After Mozilla's 2020 layoffs reduced its direct involvement, the independent, non-profit Rust Foundation was established in 2021 (backed by AWS, Google, Huawei, Microsoft, Mozilla, and others) to steward the trademark, infrastructure, and funding, while open governance teams continue to drive language and library design through the public RFC process.

Adoption has since moved from enthusiasm to infrastructure. Rust ships in Firefox, in Android, in Windows components, in AWS's Firecracker, and across foundational tooling. A landmark milestone arrived with Rust in the Linux kernel — merged experimentally in kernel 6.1 (2022) and, in 2025, declared past the experimental phase as a permanent in-tree language, making Rust the first language besides C and assembly accepted for core kernel code. Culturally, Rust has topped Stack Overflow's most admired / most loved language survey every year for roughly a decade running, an unusually durable streak for any language.

Resources

See it in Code Compare →