🦀 How to minimize Rust binary size 📦 https://github.com/johnthagen/min-sized-rust - johnthagen/min-sized-rust
Writing a Linux-compatible kernel in Rust
Offensive Rust series article that introduces new IDA plugins (rhabdomancer, haruspex, augur) to streamline vulnerability research.
First installment of the Offensive Rust series that introduces learning resources and walks through the implementation of a red teaming tool.
This post is the second part of my adventures to optimize a Rust workload running on multiple threads.In the first post, I explored how the rayon parallelism...
About half of the bin size is the statically linked std, which does not get the dead code treatment from lto. You can workaround this by following the instructions here: GitHub - johnthagen/min-sized-rust: 🦀 How to minimize Rust binary size 📦 Before and after results: $ cargo build --release && strip target/release/morr && ls -l target/release/morr Finished release [optimized] target(s) in 0.10s -rwxr-xr-x 1 jay staff 286628 Apr 17 00:59 target/release/morr* $ xargo build --target x86_...
I have recently spent a lot of time writing pixel shaders and given that I have already written a pure Rust mod player I have started to t...
TL;DR: There are some ways how you can reduce the binary size of (Rust) programs that contain debug information.
computers i guess
I wrote a basic search mod…
In a previous blog post, I mentioned how to use CPU-specific instructions in Rust to speed up the Shamir’s Secret Sharing algorithm.In my initial implementat...
Deku: Declarative binary reading and writing