We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
strip
Not a big deal, but it reduces resulting file size of a release build on my Linux machine from 37M down to 25M by adding this to Cargo.toml:
Cargo.toml
[profile.release] strip = true # strip binaries to reduce their size
The text was updated successfully, but these errors were encountered:
Makes sense 👍 Rust recently enabling stripping in release mode by default, but it's probably still good to specify it since the Flatpak builds can use a slightly older version.
Sorry, something went wrong.
#338: Enable stripping for release builds
3809ad4
No branches or pull requests
What's your idea?
Not a big deal, but it reduces resulting file size of a release build on my Linux machine from 37M down to 25M by adding this to
Cargo.toml
:The text was updated successfully, but these errors were encountered: