mirror of
https://github.com/aome510/spotify-player.git
synced 2026-04-26 09:25:49 +03:00
[GH-ISSUE #361] cargo install and root workspace Cargo.toml inconsistency #195
Labels
No labels
bug
documentation
enhancement
good first issue
help wanted
pull-request
question
third-party
third-party
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/spotify-player#195
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @LucasFA on GitHub (Feb 6, 2024).
Original GitHub issue: https://github.com/aome510/spotify-player/issues/361
Is your feature request related to a problem? Please describe.
The
debug = 1setting is not set when installing the crate withcargo install, but it does affectcargo build --releaseand the published binaries in the github release (built in CD).Describe the solution you'd like
Eventually it would be nice to remove the debug information from the binary, but I gather it's been useful. Right now, it's good enough for me to have learned the why behind the discrepancy in binary sizes. I didn't think this was evident but if you knew this already, nevermind.
More context
See https://github.com/rust-lang/cargo/issues/8264 for why this happens. Also, this reddit post, with simple ways to fix this in either direction.