-
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
Expose the target directory in cargo metadata #4022
Conversation
r? @brson (rust_highfive has picked a reviewer for you, use r? to override) |
tests/metadata.rs
Outdated
@@ -566,6 +573,7 @@ const MANIFEST_OUTPUT: &'static str= | |||
}], | |||
"workspace_members": [ "foo 0.5.0 (path+file:[..]foo)" ], | |||
"resolve": null, | |||
"target_directory": "[..]foo/target", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The slashes won't work on windows. I think you can write [..]foo[/]target
to select \
or /
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed, thanks
3c507f8
to
a367875
Compare
Thanks! @bors r+ |
📌 Commit a367875 has been approved by |
Expose the target directory in cargo metadata Closes #4017
☀️ Test successful - status-appveyor, status-travis |
Closes #4017