(no title)
jcrben | 5 months ago
This is one of the best reasons to rewrite software in Rust or any other more safe by default language.
jcrben | 5 months ago
This is one of the best reasons to rewrite software in Rust or any other more safe by default language.
msm_|5 months ago
jcrben|5 months ago
happytoexplain|5 months ago
sebtron|5 months ago
I have also learned some Rust recently, I find a nice language and quite pleasant to work with. I understand its benefits.
But still, Git is already a mature tool (one may say "finished"). Lots of bugs have been found and fixed. And if more are found, sure it will be easier to fix them in the C code, rather than rewriting in Rust? Unless the end goal is to rewrite the whole thing in Rust piece by piece, solving hidden memory bugs along the way.
rrdharan|5 months ago
> Unless the end goal is to rewrite the whole thing in Rust piece by piece, solving hidden memory bugs along the way.
I would assume that's the case.
1718627440|5 months ago
Yeah sure, memory-safety is nice for debuggibility and being more confident in the programs correctness, but it is not more than that. It is neither security nor proven correctness.
TuxSH|5 months ago
If you want a better example, take distributed database software: behind DMZ, and the interesting code paths require auth.
aw1621107|5 months ago
This seems like a rather strong statement to me. Do you mind elaborating further?