mirror of
https://github.com/aome510/spotify-player.git
synced 2026-04-26 09:25:49 +03:00
[GH-ISSUE #116] Cargo install issue #47
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#47
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 @Sloff on GitHub (Jan 31, 2023).
Original GitHub issue: https://github.com/aome510/spotify-player/issues/116
Describe the bug
Installing spotify-player via cargo gives a build error
To Reproduce
Run
cargo install spotify_player --features imageExpected behavior
The build should happen successfully
Error message
Environment
@Sloff commented on GitHub (Jan 31, 2023):
Some more context on this, I am able to use the binary for version 0.10.0, would just like to have that image feature as well
@Foxtrod89 commented on GitHub (Jan 31, 2023):
same here
macOS BigSur 11.6
@aome510 commented on GitHub (Jan 31, 2023):
Hi @Foxtrod89 @Sloff, looks like this happened because of the changes I made in my other package (https://github.com/aome510/hackernews-TUI).
cargo installseems to ignoreCargo.lock[1] and automatically upgrades some dependencies (config_parser).Still, I believe this issue can be fixed by adding
--lockedflag, socargo install spotify_player --features image --locked.[1]: https://github.com/rust-lang/cargo/issues/7169
@Sloff commented on GitHub (Feb 1, 2023):
Working with the
--lockedflag! Thank you!