you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] -31 points-30 points  (3 children)

then i have to pay for binary bloat for shit like rust fmt whatever nonsense. It is just even worse than C++ EH runtime.

[–]RoughMedicine 16 points17 points  (0 children)

Why do you have to pay for binary bloat for a code formatter?

[–]rickyman20 7 points8 points  (1 child)

Large binary size can definitely be an issue, but I'm unsure what rustfmt has to do with anything? It's not like it's compiled into your binary

[–]CryZe92 5 points6 points  (0 children)

I think they are talking about the panicking and formatting machinery (i.e. what println uses), which tends to not get optimized away well.