-
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
Fix some duplicate artifact problems. #7385
Conversation
r? @nrc (rust_highfive has picked a reviewer for you, use r? to override) |
I think this is probably best fixed in rust-lang/rust itself with https://github.com/rust-lang/rust/tree/master/src/tools/rustc-workspace-hack, although disabling features of |
060b706
to
079b3fb
Compare
Oh...I knew that. 😛 |
@bors: r+ |
📌 Commit 079b3fb has been approved by |
Fix some duplicate artifact problems. The recent cargo update failed because of duplicate artifacts with rls. `tar` should mirror what the main manifest contains. Partially revert #7374 by adding `serde` back to `url`. Unfortunately the `lsp-types` crate (used by rls) needs this feature. Unless anyone has a good idea on how to handle that, I don't think it can be removed. Unblocks cargo update, which I'd like to get done before the beta branch.
☀️ Test successful - checks-azure |
The recent cargo update failed because of duplicate artifacts with rls.
tar
should mirror what the main manifest contains.Partially revert #7374 by adding
serde
back tourl
. Unfortunately thelsp-types
crate (used by rls) needs this feature. Unless anyone has a good idea on how to handle that, I don't think it can be removed.Unblocks cargo update, which I'd like to get done before the beta branch.