use serde::Deserialize;
use crate::*;
#[derive(Deserialize)]
struct VersionFile {
version: String,
}
pub fn add_version_element(
paths: &DirPaths,
output_scope: &mut codegen::Scope,
) -> Result<(), Box<dyn Error>> {
let version_file = read_file_to_value(&format!("{}version.json", paths.schema_path))?;
let schema_version: VersionFile = serde_json::from_value(version_file)?;
debug!("OCSF Schema Version: {}", schema_version.version);
output_scope.raw(format!(
"/// This was the schema version that the code was generated from ({}).",
&schema_version.version
));
output_scope.raw(format!(
"pub static OCSF_SCHEMA_VERSION: &str = {:?};\n\n",
schema_version.version
));
Ok(())
}