1//! Some common outputs for the sync-readme utilities. 2 3#[derive(Debug, serde_derive::Deserialize, serde_derive::Serialize)] 4pub struct SyncReadmeRenderOutput { 5 pub source: String, 6 pub rendered: String, 7 pub path: camino::Utf8PathBuf, 8}