-
Notifications
You must be signed in to change notification settings - Fork 54
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
[DRAFT][Rust]: Add logic for handling rust projects #1818
base: main
Are you sure you want to change the base?
Conversation
Signed-off-by: Arthur Chan <[email protected]>
Signed-off-by: Arthur Chan <[email protected]>
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.
Could you add the relevant OSS-Fuzz glue logic in https://github.com/ossf/fuzz-introspector/tree/main/oss_fuzz_integration so this is easily tested?
Signed-off-by: Arthur Chan <[email protected]>
Signed-off-by: Arthur Chan <[email protected]>
Signed-off-by: Arthur Chan <[email protected]>
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.
Could you update the README.md of the PR with details on the implementation? Please also include some information about the algorithms, e.g. since we use AST-based analysis how is project-wide control-flow analysed? And perhaps list important limitations in the PR e.g. is code coverage a limitation?
); | ||
} | ||
|
||
fn process_function( |
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.
Could you add comments to each function please?
This PR targets to provide a Fuzz-Introspector frontend and backend logic for rust projects.