pub fn parse_file<P: AsRef<Path>>(path: P) -> Result<FafFile, FafError>
Parse FAF from file path
use faf_rust_sdk::parse_file; let faf = parse_file("project.faf").unwrap(); println!("Project: {}", faf.project_name());