Bun 1.4 includes a rewrite of Bun from Zig to Rust, adding more than 1 million lines of Rust code. Bun creator Jarred Sumner reportedly used a pre-release model called Fable 5, an agent framework that could work in parallel, and an effectively unlimited token budget to complete the initial translation in 11 days. The effort generated 6,778 commits and would have cost about $165,000 at API pricing, according to the account. Agents then continued refining the code for months before the supported release, which Paul Dix says is running on millions of developer machines. Dix argues that AI agents will increasingly write, test and improve software while people specify requirements, build verification systems and assess end results rather than review every line of code. He reports using Fable to build unshipped InfluxDB prototypes: an Iceberg integration in 14 hours and an edge-data replication system in 28 hours, followed by testing and bug fixes. Dix says neither project is production-ready or supported, but both reached end-to-end working implementations. Dix predicts that cheaper, faster frontier models and larger token budgets could make this workflow widely accessible by the end of the following year. He expects organizational inertia to preserve manual programming and code review at many companies, while more productive teams rely on AI-directed software factories and automated verification.
pauldix.com
10 min
8/26/2026
Rust Glancer is an alternative Rust language server built over four months to reduce memory use and preserve workspace indexes across editor restarts. It targets less than 100 MB of RAM for reasonable projects by storing analysis results on the filesystem and loading data only when a query needs it. Its VS Code extension is available now, although the server remains incomplete and has known bugs. Rust Glancer performs full workspace indexing with type inference and the Chalk trait solver, and supports common Rust syntax and LSP functions including go-to-definition, hover information, inlay hints, and completions. On a MacBook Pro M4 Max with 36 GB RAM, its reported base and full indexing times were five and eight seconds, versus six and 13 seconds for rust-analyzer. On a 2020 M1 MacBook Pro with 8 GB RAM, the reported times were six and nine seconds, versus seven and 14 seconds for rust-analyzer. Unlike rust-analyzer’s incremental in-memory model, Rust Glancer invalidates frozen analysis on save. It uses shallow analysis while typing and reuses the previous complete index, so new imports, structs, and traits are not fully indexed until a document is saved. The developer expects rust-analyzer to remain preferable for feature completeness and per-keystroke accuracy, while Rust Glancer targets lower-memory machines and workflows with many external code changes.
rust-glancer.github.io
6 min
8/21/2026
Bun’s planned 1.4 release, which includes a rewrite from Zig to Rust, remained unreleased three months after the prior stable version, its longest release gap since Bun launched in 2022. Public posts from Bun creator Jarred Sumner set and then missed several expected release dates, including July 7, a Tuesday, Monday, and “tomorrow.” Sumner said on August 15 that Bun 1.4 was compiling and on August 17 that it was delayed until Monday. The rewrite has generated substantial AI-assisted development activity. Over the preceding month, the source text reports 15,800 commits from robobun, 1,600 from autofix-ci[bot], and 790 from Sumner. Bun also had more than 5,000 open pull requests, compared with 2,200 for OpenClaw and 441 for React; GitHub recommends keeping fewer than 1,000 open pull requests against a single branch to avoid mergeability-check timeouts. The source text characterizes Bun 1.4 as a test of AI agents maintaining a production codebase under human direction. Zig creator Andrew Kelley said he and others were “increasingly horrified” by programming practices in Bun’s codebase, citing hacks, assertions, and code quality concerns. The source text argues that numerous Rust unsafe blocks call into question whether the rewrite achieved its stated memory-safety rationale, while framing the project as a prominent demonstration of Anthropic’s Claude coding capabilities.
tipiirai.com
4 min
8/19/2026
turbovec is a Rust vector index with Python bindings that implements Google Research’s TurboQuant quantization algorithm for approximate nearest-neighbor search. It accepts float32 vectors, supports online ingestion without a separate training phase, and provides full-file snapshots plus incremental, crash-safe sync operations. Its IdMapIndex variant supports stable uint64 external IDs and O(1) deletions. Search can apply ID allowlists or slot bitmasks inside SIMD kernels, returning up to k results only from permitted vectors. The project claims that a 10 million-document corpus requiring 31 GB as float32 fits in 4 GB with turbovec. On 100,000-vector benchmarks using OpenAI 1,536- and 3,072-dimensional embeddings and GloVe 200-dimensional vectors, its maintainers report TurboQuant search outperformed FAISS IndexPQFastScan in every measured ARM and x86 configuration: averages were 3.4–3.5 times faster at 4-bit quantization and 20–26% faster at 2-bit. The reported recall results varied by embedding dimension and bit width, with calibrated TQ+ generally matching or exceeding FAISS at recall@1 in tested OpenAI configurations. TurboQuant normalizes vectors, applies a shared random rotation, quantizes coordinates into 2- or 4-bit codes, and scores compressed vectors directly using NEON, AVX-512, AVX2, or scalar kernels. Optional TQ+ calibration fits per-coordinate shifts and scales from a representative sample before ingestion.
github.com
12 min
8/19/2026
Five teams in the Rust project have adopted a policy governing the use of Large Language Models (LLMs) for contributions to the rust-lang/rust monorepo. The policy is intended for a specific purpose and does not represent an official stance on LLMs across the entire Rust project.
blog.rust-lang.org
12 min
8/5/2026
ast-grep rewrote Tree-sitter's C core in Rust, resulting in a 30% increase in parser speed and a 22% improvement in overall performance for ast-grep. The new core enhances parsing efficiency and accelerates tree reading.
astgrep.com
16 min
7/26/2026
Bun 1.4 includes a rewrite of Bun from Zig to Rust, adding more than 1 million lines of Rust code. Bun creator Jarred Sumner reportedly used a pre-release model called Fable 5, an agent framework that could work in parallel, and an effectively unlimited token budget to complete the initial translation in 11 days. The effort generated 6,778 commits and would have cost about $165,000 at API pricing, according to the account. Agents then continued refining the code for months before the supported release, which Paul Dix says is running on millions of developer machines. Dix argues that AI agents will increasingly write, test and improve software while people specify requirements, build verification systems and assess end results rather than review every line of code. He reports using Fable to build unshipped InfluxDB prototypes: an Iceberg integration in 14 hours and an edge-data replication system in 28 hours, followed by testing and bug fixes. Dix says neither project is production-ready or supported, but both reached end-to-end working implementations. Dix predicts that cheaper, faster frontier models and larger token budgets could make this workflow widely accessible by the end of the following year. He expects organizational inertia to preserve manual programming and code review at many companies, while more productive teams rely on AI-directed software factories and automated verification.
pauldix.com
10 min
8/26/2026
Bun’s planned 1.4 release, which includes a rewrite from Zig to Rust, remained unreleased three months after the prior stable version, its longest release gap since Bun launched in 2022. Public posts from Bun creator Jarred Sumner set and then missed several expected release dates, including July 7, a Tuesday, Monday, and “tomorrow.” Sumner said on August 15 that Bun 1.4 was compiling and on August 17 that it was delayed until Monday. The rewrite has generated substantial AI-assisted development activity. Over the preceding month, the source text reports 15,800 commits from robobun, 1,600 from autofix-ci[bot], and 790 from Sumner. Bun also had more than 5,000 open pull requests, compared with 2,200 for OpenClaw and 441 for React; GitHub recommends keeping fewer than 1,000 open pull requests against a single branch to avoid mergeability-check timeouts. The source text characterizes Bun 1.4 as a test of AI agents maintaining a production codebase under human direction. Zig creator Andrew Kelley said he and others were “increasingly horrified” by programming practices in Bun’s codebase, citing hacks, assertions, and code quality concerns. The source text argues that numerous Rust unsafe blocks call into question whether the rewrite achieved its stated memory-safety rationale, while framing the project as a prominent demonstration of Anthropic’s Claude coding capabilities.
tipiirai.com
4 min
8/19/2026
Five teams in the Rust project have adopted a policy governing the use of Large Language Models (LLMs) for contributions to the rust-lang/rust monorepo. The policy is intended for a specific purpose and does not represent an official stance on LLMs across the entire Rust project.
blog.rust-lang.org
12 min
8/5/2026
ast-grep rewrote Tree-sitter's C core in Rust, resulting in a 30% increase in parser speed and a 22% improvement in overall performance for ast-grep. The new core enhances parsing efficiency and accelerates tree reading.
astgrep.com
16 min
7/26/2026
Rust Glancer is an alternative Rust language server built over four months to reduce memory use and preserve workspace indexes across editor restarts. It targets less than 100 MB of RAM for reasonable projects by storing analysis results on the filesystem and loading data only when a query needs it. Its VS Code extension is available now, although the server remains incomplete and has known bugs. Rust Glancer performs full workspace indexing with type inference and the Chalk trait solver, and supports common Rust syntax and LSP functions including go-to-definition, hover information, inlay hints, and completions. On a MacBook Pro M4 Max with 36 GB RAM, its reported base and full indexing times were five and eight seconds, versus six and 13 seconds for rust-analyzer. On a 2020 M1 MacBook Pro with 8 GB RAM, the reported times were six and nine seconds, versus seven and 14 seconds for rust-analyzer. Unlike rust-analyzer’s incremental in-memory model, Rust Glancer invalidates frozen analysis on save. It uses shallow analysis while typing and reuses the previous complete index, so new imports, structs, and traits are not fully indexed until a document is saved. The developer expects rust-analyzer to remain preferable for feature completeness and per-keystroke accuracy, while Rust Glancer targets lower-memory machines and workflows with many external code changes.
rust-glancer.github.io
6 min
8/21/2026
turbovec is a Rust vector index with Python bindings that implements Google Research’s TurboQuant quantization algorithm for approximate nearest-neighbor search. It accepts float32 vectors, supports online ingestion without a separate training phase, and provides full-file snapshots plus incremental, crash-safe sync operations. Its IdMapIndex variant supports stable uint64 external IDs and O(1) deletions. Search can apply ID allowlists or slot bitmasks inside SIMD kernels, returning up to k results only from permitted vectors. The project claims that a 10 million-document corpus requiring 31 GB as float32 fits in 4 GB with turbovec. On 100,000-vector benchmarks using OpenAI 1,536- and 3,072-dimensional embeddings and GloVe 200-dimensional vectors, its maintainers report TurboQuant search outperformed FAISS IndexPQFastScan in every measured ARM and x86 configuration: averages were 3.4–3.5 times faster at 4-bit quantization and 20–26% faster at 2-bit. The reported recall results varied by embedding dimension and bit width, with calibrated TQ+ generally matching or exceeding FAISS at recall@1 in tested OpenAI configurations. TurboQuant normalizes vectors, applies a shared random rotation, quantizes coordinates into 2- or 4-bit codes, and scores compressed vectors directly using NEON, AVX-512, AVX2, or scalar kernels. Optional TQ+ calibration fits per-coordinate shifts and scales from a representative sample before ingestion.
github.com
12 min
8/19/2026
Bun is undergoing a rewrite in Rust, which aims to leverage AI capabilities for the work typically done by open-source maintainers. Anthropic's AI tools, including a C compiler, are contributing to this rewrite process.
lockwood.dev
5 min
7/27/2026
Claude Code v2.1.181 and later utilize the Rust port of Bun, resulting in a 10% faster startup on Linux. The command `strings ~/.local/bin/claude | grep -m1 'Bun v1'` confirms the use of Bun v1.4.0 on macOS.
simonwillison.net
1 min
7/19/2026
Bun 1.4 includes a rewrite of Bun from Zig to Rust, adding more than 1 million lines of Rust code. Bun creator Jarred Sumner reportedly used a pre-release model called Fable 5, an agent framework that could work in parallel, and an effectively unlimited token budget to complete the initial translation in 11 days. The effort generated 6,778 commits and would have cost about $165,000 at API pricing, according to the account. Agents then continued refining the code for months before the supported release, which Paul Dix says is running on millions of developer machines. Dix argues that AI agents will increasingly write, test and improve software while people specify requirements, build verification systems and assess end results rather than review every line of code. He reports using Fable to build unshipped InfluxDB prototypes: an Iceberg integration in 14 hours and an edge-data replication system in 28 hours, followed by testing and bug fixes. Dix says neither project is production-ready or supported, but both reached end-to-end working implementations. Dix predicts that cheaper, faster frontier models and larger token budgets could make this workflow widely accessible by the end of the following year. He expects organizational inertia to preserve manual programming and code review at many companies, while more productive teams rely on AI-directed software factories and automated verification.
pauldix.com
10 min
8/26/2026
turbovec is a Rust vector index with Python bindings that implements Google Research’s TurboQuant quantization algorithm for approximate nearest-neighbor search. It accepts float32 vectors, supports online ingestion without a separate training phase, and provides full-file snapshots plus incremental, crash-safe sync operations. Its IdMapIndex variant supports stable uint64 external IDs and O(1) deletions. Search can apply ID allowlists or slot bitmasks inside SIMD kernels, returning up to k results only from permitted vectors. The project claims that a 10 million-document corpus requiring 31 GB as float32 fits in 4 GB with turbovec. On 100,000-vector benchmarks using OpenAI 1,536- and 3,072-dimensional embeddings and GloVe 200-dimensional vectors, its maintainers report TurboQuant search outperformed FAISS IndexPQFastScan in every measured ARM and x86 configuration: averages were 3.4–3.5 times faster at 4-bit quantization and 20–26% faster at 2-bit. The reported recall results varied by embedding dimension and bit width, with calibrated TQ+ generally matching or exceeding FAISS at recall@1 in tested OpenAI configurations. TurboQuant normalizes vectors, applies a shared random rotation, quantizes coordinates into 2- or 4-bit codes, and scores compressed vectors directly using NEON, AVX-512, AVX2, or scalar kernels. Optional TQ+ calibration fits per-coordinate shifts and scales from a representative sample before ingestion.
github.com
12 min
8/19/2026
ast-grep rewrote Tree-sitter's C core in Rust, resulting in a 30% increase in parser speed and a 22% improvement in overall performance for ast-grep. The new core enhances parsing efficiency and accelerates tree reading.
astgrep.com
16 min
7/26/2026
Rust Glancer is an alternative Rust language server built over four months to reduce memory use and preserve workspace indexes across editor restarts. It targets less than 100 MB of RAM for reasonable projects by storing analysis results on the filesystem and loading data only when a query needs it. Its VS Code extension is available now, although the server remains incomplete and has known bugs. Rust Glancer performs full workspace indexing with type inference and the Chalk trait solver, and supports common Rust syntax and LSP functions including go-to-definition, hover information, inlay hints, and completions. On a MacBook Pro M4 Max with 36 GB RAM, its reported base and full indexing times were five and eight seconds, versus six and 13 seconds for rust-analyzer. On a 2020 M1 MacBook Pro with 8 GB RAM, the reported times were six and nine seconds, versus seven and 14 seconds for rust-analyzer. Unlike rust-analyzer’s incremental in-memory model, Rust Glancer invalidates frozen analysis on save. It uses shallow analysis while typing and reuses the previous complete index, so new imports, structs, and traits are not fully indexed until a document is saved. The developer expects rust-analyzer to remain preferable for feature completeness and per-keystroke accuracy, while Rust Glancer targets lower-memory machines and workflows with many external code changes.
rust-glancer.github.io
6 min
8/21/2026
Five teams in the Rust project have adopted a policy governing the use of Large Language Models (LLMs) for contributions to the rust-lang/rust monorepo. The policy is intended for a specific purpose and does not represent an official stance on LLMs across the entire Rust project.
blog.rust-lang.org
12 min
8/5/2026
Bun’s planned 1.4 release, which includes a rewrite from Zig to Rust, remained unreleased three months after the prior stable version, its longest release gap since Bun launched in 2022. Public posts from Bun creator Jarred Sumner set and then missed several expected release dates, including July 7, a Tuesday, Monday, and “tomorrow.” Sumner said on August 15 that Bun 1.4 was compiling and on August 17 that it was delayed until Monday. The rewrite has generated substantial AI-assisted development activity. Over the preceding month, the source text reports 15,800 commits from robobun, 1,600 from autofix-ci[bot], and 790 from Sumner. Bun also had more than 5,000 open pull requests, compared with 2,200 for OpenClaw and 441 for React; GitHub recommends keeping fewer than 1,000 open pull requests against a single branch to avoid mergeability-check timeouts. The source text characterizes Bun 1.4 as a test of AI agents maintaining a production codebase under human direction. Zig creator Andrew Kelley said he and others were “increasingly horrified” by programming practices in Bun’s codebase, citing hacks, assertions, and code quality concerns. The source text argues that numerous Rust unsafe blocks call into question whether the rewrite achieved its stated memory-safety rationale, while framing the project as a prominent demonstration of Anthropic’s Claude coding capabilities.
tipiirai.com
4 min
8/19/2026
Bun is undergoing a rewrite in Rust, which aims to leverage AI capabilities for the work typically done by open-source maintainers. Anthropic's AI tools, including a C compiler, are contributing to this rewrite process.
lockwood.dev
5 min
7/27/2026