-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
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
"cargo run --path" #6142
Comments
Please clarify what you want to happen. Is changing directories such an inconvenience that cargo needs to do it for the user? |
It is indeed inconvenient having to change dirs just to run (a fresh) executable. Note that |
I believe this is the |
Actually that works, even if awkward... thanks @alexcrichton |
Ok, great! |
Changing directories is an impossibility, since https://github.com/JoKalliauer/cleanupSVG/blob/master/render.sh uses different external svg2png-convertion and of them uses cargo, so the input and output-files should be kept in place (relative path) and the following renderer should be started also from the original path. the manifest-path does not link to the path, but to the file "Cargo.toml" directly: |
The Really, I think there needs to be a |
i think this also comes up when you're cross compiling packages, |
The utility of
cargo install --path
makes me wish we had acargo run --path
as well... very helpful for testing functionality without needing to install. Do others have the same wish?The text was updated successfully, but these errors were encountered: