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
let crate_member_id_re = Regex::new(r".+\(path\+file://(.+)\)")?;
Since the following code simply appends Cargo.toml to the capture of this regex and checks for the existence of this file, the erronous path (/C:/Users/steve/Desktop/Callisto/Cargo.toml) is generated, and the file cannot be found at this location.
The text was updated successfully, but these errors were encountered:
Hey, I just submitted a PR for this I have also been seeing this issue.
A good workaround I have been successful with has been to use WSL instead of running it directly in windows. it looks like there might be some other bugs in windows though.
I tried upgrading my project from 0.6.1 to 0.9.1 but ran into an issue:
From what I've seen, this is caused by the fact that
cargo metadata
has an extra slash than what is expected by the regex (at least on Windows) .Result of
cargo metadata
From
impl/src/metadata.rs
:Since the following code simply appends
Cargo.toml
to the capture of this regex and checks for the existence of this file, the erronous path (/C:/Users/steve/Desktop/Callisto/Cargo.toml
) is generated, and the file cannot be found at this location.The text was updated successfully, but these errors were encountered: