sbom-tools 0.1.19

Semantic SBOM diff and analysis tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! `ViewApp` - Dedicated TUI for exploring a single SBOM.
//!
//! This module provides a rich, purpose-built interface for SBOM analysis
//! with hierarchical navigation, search, and deep inspection.

mod app;
mod events;
pub(crate) mod severity;
mod ui;
pub(crate) mod views;

pub use app::{
    SbomStats, TreeFilter, TreeGroupBy, ViewApp, ViewBreadcrumb, ViewNavigationContext, ViewTab,
};
pub use ui::run_view_tui;