Reducing Binary Size
Is there any way the size of the binaries could be reduced?
At the moment the three components' binaries reach almost 300 MiB which feels insane
Mine builds only to 12.7MB for all 3 binaries, perhaps this is an issue with how it is being packaged on your distro? 300MB is very similar to when I build in debug, so your binaries will also be performing drastically worse if that is what has happened here.
Though with these added to the Cargo.toml the size reduces by 40% to 7.8MB so I think it would be worth adding this @ErikReider [profile.release] strip = true lto = true
Though with these added to the Cargo.toml the size reduces by 40% to 7.8MB so I think it would be worth adding this @ErikReider [profile.release] strip = true lto = true
Oh cool! I didn't know that you could do that. I'm on it