-
Notifications
You must be signed in to change notification settings - Fork 411
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
Relative path crate dependencies are canonicalized badly on windows #380
Labels
Milestone
Comments
This has caused me some trouble too. I have been working around the problem by first running the raw cargo build command e.g.
|
ashleygwilliams
added
bug
Something isn't working
help wanted
Extra attention is needed
to-do
stuff that needs to happen, so plz do it k thx
labels
Sep 27, 2018
ashleygwilliams
added
PR attached
there's a PR open for this issue
and removed
help wanted
Extra attention is needed
labels
Oct 4, 2018
I think this issue has been resolved with #389 . Is it time to close the issue? |
I don't currently have a test build to try it out but that looks like it should fix it |
ashleygwilliams
added
changelog - fix
and removed
PR attached
there's a PR open for this issue
bug
Something isn't working
to-do
stuff that needs to happen, so plz do it k thx
labels
Jan 11, 2019
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
🐛 Bug description
I was setting up a project using
parcel-plugin-wasm.rs
, which uses wasm-pack in the background.When building the project, I got the following error.
The specified path of this dependency is:
It seems wasm-pack is canonicalizing this path, which results in a UNC Path on windows, which most windows API calls do not accept, resulting in an error.
🤔 Expected Behavior
The path should probably be handled either as-is, perhaps pushed after the crate's path.
👟 Steps to reproduce
wasm-pack build
🌍 Your environment
Include the relevant details of your environment.
wasm-pack version: 0.5.0
rustc version: rustc 1.30.0-nightly (5c875d938 2018-09-24)
The text was updated successfully, but these errors were encountered: