Modify Rust importer to support package-first mode#1913
Modify Rust importer to support package-first mode#1913michaelehab wants to merge 1 commit intomainfrom
Conversation
* Update Rust importer to only load and process advisories relevant to the purl passed in the constructor * Update Rust importer tests to include testing the package-first mode Signed-off-by: Michael Ehab Mikhail <michael.ehab@hotmail.com>
| def __init__(self, purl=None, *args, **kwargs): | ||
| super().__init__(*args, **kwargs) | ||
| self.purl = purl | ||
| if self.purl: |
There was a problem hiding this comment.
| if self.purl: | |
| if self.purl and self.purl.type!="cargo" |
|
We are not running Rust importers either in V1 nor in V2 as of now, I think we need to first make importer functional before doing this. |
|
@michaelehab can you join the community calls and chat rooms so we can discuss this? |
|
@michaelehab it will be helpful for us mentors and community members to design and help you if you can regularly join us in VCIO community calls that happens on Tuesday 8:00 AM PST https://meet.jit.si/VulnerableCode |
|
@TG1999 @pombredanne Sure, I will start joining this call too regularly so we can discuss this more. |
Solves #1911