sbom-tools 0.1.18

Semantic SBOM diff and analysis tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! SBOM serialization and transformation.
//!
//! Operates on raw JSON (`serde_json::Value`) to inject enrichment data,
//! filter components, or merge SBOMs — preserving the original format structure.

mod enricher;
mod merger;
mod pruner;

pub use enricher::enrich_sbom_json;
pub use merger::{DeduplicationStrategy, MergeConfig, merge_sbom_json};
pub use pruner::{TailorConfig, tailor_sbom_json};