padlock-output 0.10.5

Terminal, JSON, SARIF, and diff output formatters for the padlock struct layout analyzer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod diff;
pub mod explain;
pub mod json;
pub mod markdown;
pub mod project_summary;
pub mod sarif;
pub mod summary;

pub use diff::render_diff;
pub use explain::render_explain;
pub use json::to_json;
pub use markdown::to_markdown;
pub use project_summary::render_summary as render_project_summary;
pub use sarif::to_sarif;
pub use summary::render_report;