1 2 3 4 5 6 7 8
use crate::bom; use serde::Serialize; #[derive(Serialize, Debug)] pub struct Build { pub bom: bom::Bom, pub unmet: Vec<String>, }