Article · Wikipedia archive · Last revised May 30, 2026

Outline of the Rust programming language

The following outline is provided as an overview of and topical guide to Rust:

Last revised
May 30, 2026
Read time
≈ 5 min
Length
1,056 w
Citations
51
Source

The following outline is provided as an overview of and topical guide to Rust:

Rust is a multi-paradigm programming language emphasizing performance, memory safety, and concurrency. Rust was initially developed by Graydon Hoare starting in 2006, later sponsored and maintained by Mozilla Research starting in 2009, and first publicly released in 2010, with version 1.0 released in 2015. Rust is syntactically similar to C++ but guarantees memory safety without needing a garbage collector.1234

What type of language is Rust?

History of Rust

  • Graydon Hoare – creator of Rust starting in 20069
  • Mozilla – original sponsor and maintainer of Rust starting in 2009
  • Cargo (software) – introduced as Rust’s official package manager and build system in 2014
  • Rust Foundation – current steward of the Rust project since its inception in 2021

General Rust concepts

Issues, limits

Rust toolchain

Compilers

  • rustc – official Rust compiler
  • LLVM – Rust backend uses LLVM for code generation
  • mrustc – alternative Rust compiler written in C++37
  • CraneliftJIT compiler backend used in Wasmtime3839

Build and package management

  • Cargo – build system and package manager40
  • Crates.io – official Rust package registry41

Rust libraries and frameworks

  • Rocket – web framework focused on type safety42
  • Serde – framework for serialization and deserialization supporting JSON, YAML, TOML, and more.43
  • Tokio – asynchronous runtime for Rust44

Testing and benchmarking

Notable projects written in Rust

Example source code

Rust publications

Books about Rust

  • Klabnik, Steve; Nichols, Carol; Krycho, Chris (2026). The Rust Programming Language (3rd ed.). No Starch Press. ISBN 978-1-7185-0444-8. OCLC 1591968943.
  • The Secrets of Rust: Tools – Bitfield Consulting
  • Drysdale, David. Effective Rust: 35 specific ways to improve your Rust code. O'Reilly Media. ISBN 978-1-0981-5137-9. OCLC 1422579583.
  • Gjengset, Jon (2022). Rust for Rustaceans: idiomatic programming for experienced developers. No Starch Press. ISBN 978-1-7185-0185-0. OCLC 1289300769.
  • Blandy, Jim; Orendorff, Jason; Tindall, Leonora F.S. (2026). Programming Rust: fast, safe systems development (3rd ed.). O'Reilly Media. OCLC 1573515932.
  • McNamara, Tim S. (2021). Rust in Action : systems programming concepts and techniques. Manning. ISBN 978-1-61729-455-6. OCLC 1300793337.
  • Palmieri, Luca (2022). Zero to Production in Rust: an opinionated introduction to backend development. OCLC 1446252540.

Excerpted from: "The best Rust books for 2025, reviewed". Bitfield Consulting. July 5, 2024.

Rust learning resources

Competitive programming

See also

See also

Outlines of other programming languages
External links
References

References

  1. page, Clive Thompsonarchive. "How Rust went from a side project to the world's most-loved programming language". MIT Technology Review.
  2. "Introduction – Rust By Example". doc.rust-lang.org.
  3. "Introduction to Rust Programming Language". GeeksforGeeks. March 18, 2021.
  4. "CS 242: Memory safety in Rust". stanford-cs242.github.io.
  5. Shuklin, George (October 2, 2020). "My first insight into Rust type system".
  6. "Static – Rust By Example". doc.rust-lang.org.
  7. C, Carlo (April 28, 2025). "Rust Core: Key Concepts for Getting Started".
  8. "Rust memory safety explained".
  9. Cassel, David (September 10, 2023). "Graydon Hoare Remembers the Early Days of Rust".
  10. "Introduction – Asynchronous Programming in Rust". rust-lang.github.io.
  11. "References and Borrowing". doc.rust-lang.org.
  12. "Closures: Anonymous Functions that Capture Their Environment – The Rust Programming Language". rustwiki.org.
  13. "Concurrency – The Rust Programming Language". web.mit.edu.
  14. "Crates and Modules – The Rust Programming Language". web.mit.edu.
  15. "Crates – Rust By Example". doc.rust-lang.org.
  16. "Enums – Rust By Example". doc.rust-lang.org.
  17. "Rust – Enum". GeeksforGeeks. March 18, 2021.
  18. "Error Handling – The Rust Programming Language". web.mit.edu.
  19. "Functions – The Rust Programming Language". doc.rust-lang.org.
  20. "Generic Data Types – The Rust Programming Language". rustwiki.org.
  21. "Control Flow – The Rust Programming Language". doc.rust-lang.org.
  22. "Iterators – The Rust Programming Language". web.mit.edu.
  23. "Macros – The Rust Programming Language". doc.rust-lang.org.
  24. "Memory Management – Comprehensive Rust". google.github.io.
  25. "What is Ownership? – The Rust Programming Language". doc.rust-lang.org.
  26. "Rust Pattern Matching (With Examples)". www.programiz.com.
  27. "Serialize in serde – Rust". docs.rs.
  28. "Smart Pointers – The Rust Programming Language". doc.rust-lang.org.
  29. "Strings – Rust By Example". doc.rust-lang.org.
  30. "Defining and Instantiating Structs – The Rust Programming Language". doc.rust-lang.org.
  31. "Traits: Defining Shared Behavior – The Rust Programming Language". doc.rust-lang.org.
  32. "Type inference – Rust Compiler Development Guide". rustc-dev-guide.rust-lang.org.
  33. "Unit testing – Rust By Example". rustwiki.org.
  34. "Variables and Mutability – The Rust Programming Language". doc.rust-lang.org.
  35. "Variables in Rust". GeeksforGeeks. March 1, 2021.
  36. "Compile Times – The Rust Performance Book". nnethercote.github.io.
  37. "thepowersgang/mrustc". November 5, 2025 – via GitHub.
  38. "Cranelift". cranelift.dev.
  39. "rust-lang/rustc_codegen_cranelift". November 6, 2025 – via GitHub.
  40. "Introduction – The Cargo Book". doc.rust-lang.org.
  41. "The Rust community's crate registry". crates.io.
  42. "Rocket – Simple, Fast, Type-Safe Web Framework for Rust". rocket.rs.
  43. "Overview · Serde". serde.rs.
  44. "Tokio – An asynchronous Rust runtime". tokio.rs.
  45. "bheisler/criterion.rs". November 6, 2025 – via GitHub.
  46. "criterion – Rust". docs.rs.
  47. "Tests – The Cargo Book". doc.rust-lang.org.
  48. "PistonDevelopers/dyon". October 23, 2025 – via GitHub.
  49. "Fe – A next generation, statically typed, future-proof smart contract language for the Ethereum Virtual Machine". fe-lang.org.
  50. "Introduction – The Move Book". move-language.github.io.
  51. "The Sway Programming Language". fuellabs.github.io.