min-sized-rust
coreutils
min-sized-rust | coreutils | |
---|---|---|
101 | 129 | |
9,058 | 20,830 | |
0.9% | 1.0% | |
4.2 | 10.0 | |
23 days ago | 7 days ago | |
Rust | Rust | |
MIT License | MIT License |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
min-sized-rust
-
The Linux Kernel Prepares for Rust 1.77 Upgrade
This is a good guide on building small Rust binaries: https://github.com/johnthagen/min-sized-rust
This talks about going to extreme lengths on making the smallest Rust binary possible, 400 bytes when it was written, https://darkcoding.net/software/a-very-small-rust-binary-ind...
The thing is, you lose a lot of nice features when you do this, like panic unwinding, debug symbols, stdlib… for kernel and some embedded development it’s definitely important, but for most use cases, does it matter?
-
Rust wont save us, but its ideas will
Oh it was 137, haha. I will link you to this older comment of mine: https://news.ycombinator.com/item?id=29408906
See also https://github.com/johnthagen/min-sized-rust
-
Making Rust binaries smaller by default
Are you sure? If so then this is awesome news, but I'm a bit confused; the commit in that min-sized-rust repo adding `build-std` to the README was merged in August 2021: https://github.com/johnthagen/min-sized-rust/pull/30
Are you saying that at that point the feature still hadn't "landed in Rust nightly" until recently? If so then what's the difference between a feature just being available in Rust nightly, vs having "landed"?
-
Was Rust Worth It?
Rust binaries are by default nowhere close to 500MB. If they are not small enough for you, you can try https://github.com/johnthagen/min-sized-rust. By avoiding the formatting machinery and using `panic_immediate_abort` you can get about the size of C binaries.
-
Compiling Rust binaries for Windows 98 SE and more: a journey
A useful reference: https://github.com/johnthagen/min-sized-rust
- How to minimize Rust binary size
- Error on flashing embedded code to stm32f103
-
Tiny Binaries (2021)
That must be without stripping. Also there are ways to reduce binary size. See e.g. [min-sized-rust](https://github.com/johnthagen/min-sized-rust). I've gotten stripped binaries of small cli utils less than 400KiB without doing anything special, less than 150 KiB by customizing profile settings and compressing with upx, and less than 30 KiB by replacing the std with the libc as the link shows. Haven't tried with fltk though...
-
Shared libraries
This is not quite what you're asking, but it does also address the underlying concern: https://github.com/johnthagen/min-sized-rust
coreutils
-
Bzip2 crate switches from C to 100% rust
I think that is the goal of uutils.
https://uutils.github.io/
- Yes-rs: A fast, memory-safe rewrite of the classic Unix yes command
- Rust Coreutils 0.1.0 Release
-
Ubuntu 25.10 Replaces GNU Coreutils with Rust Uutils
If this rewrite is indicative of other rewrites, we'll see a license change from GPL [1] to MIT.
"Differences with GNU are treated as bugs." - https://github.com/uutils/coreutils#goals
Wouldn't it be annoying though, to have to keep things bug-for-bug compatible on a green-field project? That priority may be the first compromise, and divergence is inevitable.
Thinking of what if coreutils were ported to C#; what would folks think then? If the reaction would be the same, different, or ambivalent.
[1] https://github.com/coreutils/coreutils?tab=GPL-3.0-1-ov-file
- Oxidizing Ubuntu: adopting Rust utilities by default
-
fd: A simple, fast and user-friendly alternative to 'find'
>> For me, anything that isn’t a drop-in replacement for the OG tools isn’t worth the friction.
"The uutils project reimplements ubiquitous command line utilities in Rust. Our goal is to modernize the utils, while retaining full compatibility with the existing utilities. We are planning to replace all essential Linux tools."
https://uutils.github.io/
uutils is being adopted in Ubuntu 25.10:
https://www.theregister.com/2025/03/19/ubuntu_2510_rust/
-
Carefully but Purposefully Oxidising Ubuntu
I mentioned this on reddit, but AFAIK, the uutils project doesn't yet support locales: https://github.com/uutils/coreutils/issues/3997
I'm not any more a fan of POSIX locales than the next person[1], but AIUI, that seems a likely requirement for uutils to be used in a distro like Ubuntu.
I'd be curious how they plan to address this. At least from my perspective, unless uutils has already been designed to account for locales from the start (I don't know if it has), it seems likely that a significant investment of time will be required to add support for it.
[1]: https://github.com/mpv-player/mpv/commit/1e70e82baa9193f6f02...
- Rust Coreutils 0.0.29 Release
-
Eza: A modern, maintained replacement for ls
Related: https://github.com/uutils/coreutils "Cross-platform Rust rewrite of the GNU coreutils"
-
Cross-platform Rust rewrite of the GNU coreutils
Not that it should represent the rubicon of when to/not to rewrite code, but when you do, you do trade one set of bugs for a new set of bugs: https://github.com/uutils/coreutils/issues
What are some alternatives?
smartstring - Compact inlined strings for Rust.
woodpecker - Drill is an HTTP load testing application written in Rust
embedded-graphics - A no_std graphics library for embedded applications
exa - A modern replacement for ‘ls’.
rustc_codegen_gcc - libgccjit AOT codegen for rustc
tokei - Count your code, quickly.