103
this post was submitted on 16 May 2026
103 points (98.1% liked)
Programmer Humor
42173 readers
359 users here now
Post funny things about programming here! (Or just rant about your favourite programming language.)
Rules:
- Posts must be relevant to programming, programmers, or computer science.
- No NSFW content.
- Jokes must be in good taste. No hate speech, bigotry, etc.
founded 6 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
If you cargo install something you get source code (unless the library packages a binary, but that's the same as if it were JS or Python or C). Rust dependencies don't become binary until the final product.
Auditing Rust binaries isn't much worse than auditing minified and uglified JS. I've done both.
EDIT:
Rust is doing pretty poorly right now.
https://kerkour.com/rust-supply-chain-nightmare
I just went through the article and I don't think I agree with the assessment that "Rust is doing pretty poorly right now." It feels disingenuous, given the content of the article you linked:
I'd imagine Rust's strict enforcement of a few specific patterns makes the assembly more predictable than C/++ where you can do literally anything?