You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
flac-tracksplit>cargo add flac-tracksplit
warning: some crates are on edition 2021 which defaults to `resolver = "2"`, but virtual workspaces default to `resolver = "1"`
note: to keep the current resolver, specify `workspace.resolver = "1"` in the workspace root's manifest
note: to use the edition 2021 resolver, specify `workspace.resolver = "2"` in the workspace root's manifest
Adding flac-tracksplit (local) to dependencies.
error: cannot add `flac-tracksplit` as a dependency to itself
I'm unfamiliar with Rust, but familiar with GoLang - maybe you could include "precompiled" binaries in your project for easy download? Right now it seems that I have to build the binaries myself, and being a person without rust experience I don't know where to begin. Sorta expected "releases" to have downloads but none exist for this project.
edit: I guess this tool may not be meant to work (or tested on windows)
Ouch, sorry, I did include a "how to install" guide in some of my less recently released projects but not in this one. I'll leave this issue open as a reminder to update the readme, but to unblock you, it's this command line (assuming you have current rust stable from rustup):
Your intuition to use cargo add isn't a bad one (it does "add" a thing to a cargo workspace!), but unfortunately runs afoul of the mixed UX metaphors in play when using cargo: It exists to manage a global rust setup (to a small part) as well as deal with a rust code workspace (for the most part). Only the "install" verb works on the global rust setup, installing crates that "are" binaries. The "add" verb would add a library crate reference to a Cargo.toml (similar to go mod tidy after you reference a package in a source file).
Can you please include some setup instructions?
I have a Windows machine and installed https://doc.rust-lang.org/cargo/getting-started/installation.html then attempted to install using the command listed in: https://crates.io/crates/flac-tracksplit
It failed
I'm unfamiliar with Rust, but familiar with GoLang - maybe you could include "precompiled" binaries in your project for easy download? Right now it seems that I have to build the binaries myself, and being a person without rust experience I don't know where to begin. Sorta expected "releases" to have downloads but none exist for this project.
edit: I guess this tool may not be meant to work (or tested on windows)
The text was updated successfully, but these errors were encountered: