Rust
AdoptLanguages & Frameworks
A systems programming language focused on safety and performance.
Why it's here
Placed in Adopt: 33 article(s) of evidence from 7 source(s), led by open-source activity, with 16 in the last 30 days. Confidence 100%.
Evidence (19)
- 7Hacker News·8/12/2026open_sourceWoxi open-sources a Rust reimplementation of the Wolfram Language
Woxi is an open-source interpreter for the Wolfram Language written in Rust, positioned as a Mathematica-like alternative with a GUI, CLI, Jupyter kernel, Python package, npm package, and WASM support. The project emphasizes fast startup, embeddability, and compatibility testing, with tens of thousands of unit and snapshot tests to track conformance.
- 7Hacker News·8/10/2026breakthroughRust portable SIMD now runs on GPUs
VectorWare says it has successfully mapped Rust's portable SIMD, core::simd, onto GPU hardware. The company describes this as a step toward writing high-performance GPU software with the same Rust abstractions used on CPUs, without changing source code.
- 6Hacker News·8/5/2026open_sourceRust Project Adopts Public Policy for LLM Use in rust-lang/rust
Several teams in the Rust project have adopted a new policy governing how large language models may be used in contributions to the rust-lang/rust monorepo. The policy is intended to clarify expectations for contributors and reviewers, especially around LLM-generated code, issue reporting, and quoted LLM output.
- 5Hacker News·8/3/2026framework_updateRust proposal for immobile types and guaranteed destructors
The Rust project goals page proposes work on immobile types and guaranteed destructors as part of the language’s future roadmap. The proposal focuses on giving developers stronger guarantees around object movement and cleanup behavior, which could affect low-level Rust programming patterns.
- 6GitHub Blog·7/31/2026open_sourceGitHub Open-Sources Fast Rust Case Folding
GitHub describes how it optimized case folding for its Blackbird code search engine, emphasizing branch-free ASCII processing that runs close to memory speed. The company open-sourced the implementation as a Rust crate named casefold, focused on simple Unicode case folding for consistent text matching.
- 4Hacker News·7/30/2026researchRefactoring Cuts Agentic Coding Costs
A Thoughtworks CTO describes an experiment refactoring a 17,155-line Rust data access layer built by coding agents. By measuring token and time costs for the same change before and after each refactoring step, the article argues that cleanup work can reduce the cost of future agent-generated changes.
- 6Hacker News·7/27/2026open_sourceQuestions raised over Bun’s Rust rewrite and AI involvement
The post examines Bun’s claimed rewrite in Rust and questions the scale, cost, and timing of the effort, including reported Anthropic API spending and heavy use of automated pull requests. It also notes the lack of a new release tag weeks after the rewrite was merged, suggesting the migration may still be ongoing rather than completed.
- 4Hacker News·7/25/2026researchDebate Over Memory Safety and Fil-C
The article argues that discussions around memory safety in systems programming are becoming more contentious, especially as Fil-C offers a way to make C and C++ programs detect invalid memory access at runtime. It also criticizes claims that Rust is inherently memory-unsafe, noting that Fil-C and similar approaches still come with trade-offs such as slower performance, GC, and ABI incompatibility.
- 7InfoQ·7/23/2026framework_updateMeta Ports React Compiler to Rust
Meta has added a Rust-based version of the React Compiler to the main React repository to speed up builds and fit better with its Rust-based JavaScript toolchain. The public API stays the same, while Meta says compilation can be up to 50% faster.
- 1Hacker News·7/22/2026researchEssay on the satisfaction of making things
The post reflects on the author's sense of fulfillment from making things directly, including writing code by hand, creating art, carpentry, and fiction. It contrasts that satisfaction with the feeling that work done by others at one's request feels less personally meaningful, while also touching on the mixed effects of generative AI on software development. The piece is primarily a personal essay rather than a news event.
- 3Hacker News·7/22/2026product_launchLate.sh: a command-line clubhouse for developers
Late.sh is a community platform accessed over SSH that combines chat, profiles, shared art, games, and live demo browsing in a terminal-first experience. It uses SSH keys for identity instead of passwords or OAuth, and stores only key fingerprints for privacy.
- 4Hacker News·7/19/2026framework_updateClaude Code appears to use Bun's Rust port
A report suggests Claude Code v2.1.181 and later embed the Rust port of Bun, with evidence found by inspecting the Claude binary on disk. The change reportedly improved Linux startup time by about 10%, while otherwise going largely unnoticed.
- 7Hacker News·7/16/2026framework_updateRoc compiler rewrite reaches feature parity after 487 days
The Roc compiler team says its 300,000-line rewrite from Rust to Zig has reached feature parity with the original compiler after 487 days of work. The milestone enabled updated demos and smaller WebAssembly output, but it is not yet a formal release, with version 0.1.0 planned for later this year.
- 4InfoQ·7/16/2026open_sourceRuth Linehan on Rust's performance advantages in caching services
Ruth Linehan describes migrating high-performance caching services from Kotlin to Rust and how the move challenged assumptions about delivery speed and engineering overhead. She highlights Rust's borrow checker, compile-time safety, and profiling tools such as Criterion and flamegraphs for improving concurrent code paths.
- 3Simon Willison·7/16/2026open_sourceMermaid diagrams rendered as Unicode box art
Simon Willison describes experimenting with a Rust-based terminal renderer for Mermaid diagrams found in the open-sourced Grok CLI codebase. He also prototyped running it in the browser through WebAssembly, producing a tool that displays Mermaid diagrams as Unicode box art. The post is a short developer-focused note about adapting an existing terminal component for web use.
- 4Hacker News·7/15/2026researchProposal to add Rust-style editions to SQLite
A blog post argues that SQLite should adopt Rust-style editions to change unsafe defaults without breaking existing applications. It highlights two major issues: foreign key constraints are off by default, and permissive type affinity can allow values of the wrong type to be stored in columns. The post presents editions as a way to improve safety while preserving compatibility.
- 5Hacker News·7/13/2026open_sourceLinux 0.11 Rewritten in Idiomatic Rust and Booted in QEMU
A GitHub project rewrites Linux 0.11 in idiomatic Rust and demonstrates it booting successfully in QEMU. The work appears to be a hobbyist reimplementation rather than an official Linux release, but it highlights Rust’s use in low-level systems programming.
- 5Martin Fowler·7/13/2026researchFowler on AI Harnesses and Self-Hosted Models
Martin Fowler reports that teams are focusing more on AI harness engineering, especially context management and stronger validation techniques such as property-based testing and formal methods. He also notes growing interest in self-hosted open-weight models, driven by cost, data security, model sovereignty, and the possibility of fine-tuning domain-specific models to reduce token usage.
- 5Hacker News·7/9/2026open_sourceAndrew Kelley criticizes Bun's Rust rewrite
Zig creator Andrew Kelley published a detailed critique of Bun and its planned rewrite in Rust, focusing on the project’s management style, code quality, and technical direction. He argues that Bun’s startup pressures and rapid development led to poor engineering practices and tension with the Zig community.