### Basic Inno File Parsing Source: https://github.com/russellbanks/inno/blob/main/README.md Demonstrates how to create an Inno object from an executable file and print the application name from its header. ```rust use inno::Inno; fn main() { let inno_file = File::new("innosetup-6.7.1.exe").unwrap(); let inno = Inno::new(file).unwrap(); println!("{}", inno.header.app_name()); } ``` -------------------------------- ### Add Inno Crate Dependency Source: https://github.com/russellbanks/inno/blob/main/README.md Add this to your Cargo.toml to include the inno crate in your project. ```toml [dependencies] inno = "0.4" ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.