egdata-manifests-parser 0.1.0

A parser for Epic Games manifest files
Documentation
1
2
3
4
5
6
7
8
9
10
use egdata_manifests_parser::Manifest;

/// Main function that demonstrates the usage of the manifest parser
fn main() {
    println!("Manifest Parser");

    // Example usage:
    // let manifest = load("path/to/manifest").expect("Failed to load manifest");
    // println!("Loaded manifest: {:?}", manifest);
}