Spokes.wiki Search About
Computer Language source ↗ source url updated Wed Aug 05 2026 00:00:00 GMT+0000 (Coordinated Universal Time)

Rust

The language’s own front page organizes everything under three headings — performance, reliability, productivity — and the load-bearing claim is the second: the ownership model guarantees memory safety and thread safety without a garbage collector or runtime, catching whole classes of bug at compile time, including data races. Tooling is presented as part of the language’s value: Cargo as build tool and package manager, crates.io as registry, editor support with completion and formatting. The four target domains named are command-line tools, WebAssembly, network services and embedded systems. Governance is the Rust Foundation with corporate and individual members. Version 1.97.1 (re-verified 2026-08-06 on rust-lang.org, unchanged); “hundreds of companies” in production.

T1 — the project’s own site, which ../QUALITY.md grades as primary regardless of who links to it. Authoritative about intent: this is what Rust says it is for. It is also a marketing surface, so every performance and adoption figure here is the project’s own and unverified. Tier and trust are different questions, and this page keeps them apart.

What is actually distinctive

Two positions the rest of the founding corpus does not take.

Safety without a runtime. memory-management-model describes a field where safety came from a garbage collector and the absence of a collector came with manual memory. Rust’s claim is that these were never the only options, and its evidence is that the same ownership rules do double duty: they manage memory and they reject data races, so concurrency safety falls out of the memory design rather than being a second mechanism.

No runtime is a deployment claim, not a performance one. The absence of a runtime is why the four named domains include embedded systems and WebAssembly — spaces go, php, nodejs, clojure and elixir cannot enter as they are. It puts Rust in c‘s space, which is the comparison the whole pitch implies without stating.

The cost the page does not name is the one everybody who has written Rust reports: the borrow checker moves work from debugging to compiling. A front page has no reason to say that, and this corpus has no source that measures it.

programming-language · c · memory-management-model · concurrency-model · language-governance · synthesis