On January 30, 2026, the Rspack development team released version 1.7, the final update in the 1.x series before the planned transition to version 2.0. The update focuses on improving performance and expanding plugin compatibility while preserving the existing API that developers rely on. Rspack, a Rust‑based module bundler, positions itself as a faster alternative to the widely used webpack.
Technical Enhancements
Plugin Compatibility
The new release includes enhanced compatibility with the SWC plugin ecosystem. SWC, a JavaScript/TypeScript compiler written in Rust, is now more seamlessly integrated, allowing developers to use a broader range of plugins without encountering compatibility issues that previously required workarounds.
Asset Importing
Rspack 1.7 introduces native asset importing as raw bytes. This feature enables developers to import binary files directly into the bundle, simplifying workflows that involve images, fonts, or other binary assets. The change reduces the need for external loaders and streamlines the build process.
Lazy Compilation
Dynamic modules now compile lazily by default. When a module is imported at runtime, Rspack defers its compilation until it is actually needed, which can reduce initial bundle size and improve startup performance for applications that rely on code splitting.
Performance Impact
Benchmark tests conducted by the Rspack team report performance gains of up to 80 percent compared to previous releases. These improvements stem from the combination of Rust’s efficient execution, the new lazy compilation strategy, and the streamlined asset handling. The performance boost is particularly noticeable in large projects with extensive dependency trees.
Industry Context
Rspack’s focus on speed and compatibility aligns with a broader trend in the JavaScript ecosystem toward faster build tools. While webpack remains the dominant bundler, its JavaScript implementation can lead to slower build times, especially in complex projects. Rspack’s Rust foundation offers a compelling alternative for teams seeking reduced build latency without sacrificing the familiar webpack API.
Future Outlook
The release of version 1.7 signals the end of the 1.x development cycle. The Rspack team has announced that version 2.0 will introduce a more extensive set of changes, including a new plugin architecture and additional performance optimizations. Official documentation indicates that the 2.0 release is slated for Q3 2026, with a detailed roadmap available on the project’s website. Developers are encouraged to test the 1.7 update in staging environments to evaluate compatibility with existing build pipelines before planning migration to the upcoming major version.






