Latest Servo release hints at a real Rust alternative to Chromium
As Mozilla stumbles into 'AI everywhere,' you might be glad of a non-Google browser engine
Servo is an all-new and all-Rust browser rendering engine. As Mozilla falters, it's the world's best option for avoiding a Google monopoly.
Servo 0.0.2 is the second numbered release from the project. There is an accompanying post in the Servo project blog, "October in Servo," with the loaded subtitle "Better for the web, better for embedders, better for you."
Quite big claims, but the post behind them is an entirely technical summary of the recent work on the engine.
Servo is not a standalone app. It's a browser rendering engine, the core around which apps may one day be built. The repo does include the formerly standalone wrapper called Servo Shell, though, which lets you run a standalone browser, enter URLs, and interact with the result.
The new version follows last month's version 0.0.1, when the project began to issue tagged releases on GitHub. The switch to numbered versions is an encouraging sign, showing that the project is making headway after it was reborn as a Linux Foundation Europe project a couple of years ago.
You should take these zero-point-zero version numbers seriously because this is a long way from a complete finished product. However, the switch to numbered versions suggests the developers feel that a finished version 1 is at least foreseeable now. It also makes makes it easier to make snapshots visible on the GitHub repository. So, for instance, this contains standalone downloads for Windows, Linux, macOS, and Android.
Servo has been in development for a long time. The first commits to the project's repository were way back in 2012. Early on, it was a collaborative effort between Mozilla and Samsung. Then came COVID – and cutbacks.
There are a few reasons why Servo matters. For one, much of the world runs on the web and web apps these days, including almost all SaaS offerings. Twenty years ago, that was a new thing, as El Reg explained in September 2005 using Salesforce as its example – but since then it's become ubiquitous. Back in 2016, a Reg article still had to explain what Electron was. It lets developers build local applications for all the main desktop and mobile OSes from a single codebase: JavaScript, rendered via Google's Chromium engine. If you use some kind of SaaS product with a local client, the chances are that the client app is built using Chromium.
Similarly, today, most browsers are based on that one browser engine. Among programmers it's the stuff of jokes and memes now: "Behind every browser, there's Chromium." In "Why does everything have to be based on Chromium?," see if you can spot your browser. Are you using "Pretty Chrome" or "Red Chrome" or "Blue Chrome" or "Lion Chrome"? It's not just browsers – in "Oops! All Chromium," you can play spot the logo: we identified Slack, Spotify, Teams, Discord, Steam, and VS Code.
In reality, underneath the branding, there are only a handful of browser engines that are not related to Chromium. Apple's homegrown Safari was originally based on KDE's KHTML engine, which Apple later open sourced as WebKit. Safari used to run on Windows, but not since version 5.1.7 in 2010. Apple maintains there are three versions, but they're all for Apple devices.
If you want to run a WebKit-based browser on anything other than Apple hardware, there aren't many options: the Midori browser is cross-platform, and on Linux and Haiku there's GNOME Web.
Safari and WebKit are distant cousins of the Chrome family. Back in 2013, Google forked WebKit to create Blink, which is the engine in Chromium.
There are two super-lightweight GUI browsers that don't yet support JavaScript, NetSurf and Dillo, the latter of which has come back to life under a new project lead. The lack of JavaScript is why they're tiny and fast, but it also limits their use. They can't do what Chromium does in Electron.
- Ubuntu 25.10's Rusty sudo holes quickly welded shut
- Rust Foundation tries to stop maintainers corroding
- Debian demands Rust or rust in peace for legacy ports
- Rust-style safety model for C++ 'rejected' as profiles take priority
More capable is the Ladybird browser, which as we reported in 2023 has been spun off from the standalone Unix-like Serenity OS project. When it went cross-platform, Ladybird was implemented in C++ like its former parent OS, but project lead Andreas Kling announced in 2024 that it's moving to Apple's Swift language. The project website says: "We are targeting Summer 2026 for a first Alpha version on Linux and macOS. This will be aimed at developers and early adopters."
Mozilla axed Servo and its developers five years ago, and these days seems more interested in adding AI. There are a few other browsers based on the modern Firefox codebase, such as Waterfox, LibreWolf, Floorp, and the Zen Browser, which we looked at last year.
Chrome and Chromium are so dominant that most websites and web apps expect them, and quite a few things don't render correctly in Firefox. As we mentioned when Thunderbird 142 landed, there are extensions to let you have Slack, WhatsApp, Facebook Messenger, and so on as tabs in Thunderbird, and they do work, but neither look nor work quite right.
In summary, there are a handful of non-Chromium based alternative browsers out there, but not many and they do have some limitations. In the world of web components to embed into apps, there's really no choice except Chromium. That is why Servo matters. It's FOSS, it's independent, and it's more or less the original Rust project.
Rust alone makes it appealing for a lot of developers because internet client software is one of the main channels for vulnerabilities and exploits. Chromium is around 47,712,130 lines of code, of which 54.1 per cent is C++. Nearly 26 million lines of C++ is a lot to debug. We suspect that many Reg readers, like this vulture, have zero interest in writing Linux kernel modules. That seems fair to us, but the appearance of visible GUI Rust apps, such as the Zed code editor, and the whole COSMIC desktop environment, are good examples of substantial Rust projects that work well – and their performance is excellent.
Electron makes JavaScript an easy choice. It's popular and the apps look good. Even so, performance, code size, and security remain critical, and Servo has strong potential in all three of these areas. It probably won't power your next web browser just yet, but it could start to quietly displace Electron without most of its users ever noticing. ®

