xbp-analysis 10.57.0

Language-agnostic static analysis (error-handling / Aspirator-style) for XBP
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Outbound adapters (filesystem, config, output, cache, fix).

pub mod cache;
pub mod config;
pub mod filesystem;
pub mod fix;
pub mod output;

pub use cache::MemoryCache;
pub use config::YamlTomlConfigLoader;
pub use filesystem::{FsSourceLoader, IgnoreWalkDiscovery};
pub use fix::SafeFixApplier;
pub use output::{
    GithubActionsRenderer, JsonRenderer, SarifRenderer, TerminalRenderer, render_report,
};