[prost] includes prost crate infos in rust_analyzer_aspect #2232
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The change is fairly straightforward, but I did need to move prost
providers up to
prost/providers.bzl
and out ofprivate/prost.bzl
toavoid a cyclic dependency.
What we do is:
rust_prost_library
to return therust_proto_info
providerrust-analyzer
aspect we iterate over transitive dep infos andgenerate the appropriate
RustAnalyzerInfo
crate_info
fromProstProtoInfo
if we'reprocessing a prost target as the "root"
crate_info
There are a couple of things I'm not sure are correct:
deps
to[]
- I think that's correct butI'm not sure-sure.
proc_macro_dylib_path
to alwaysNone
- again Ithink that's correct, but not sure-sure.
Fixes #2121.