Allow flowgraph authors to include info about themselves and flowgraph documentation inside the save format.
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
pub struct AuthorMetadata {
/// Name of author.
pub author_name: String,
/// Company, school, group, etc. of author.
pub author_orginization: String,
/// Single sentence description of what flowgraph does
pub description: String,
/// In-depth details about flowgraph operation, implementation specifics, etc.
pub documentation: String,
pub version: semver::Version,
}
Allow flowgraph authors to include info about themselves and flowgraph documentation inside the save format.
We should add a field with a type like this to the root flowgraph save struct: