inno 0.2.0

Library for reading Inno Setup executables
Documentation

inno

CI Status Latest version Documentation License

Usage

Add this to your Cargo.toml:

[dependencies]
inno = "0.2"

Example

use inno::Inno;

fn main() {
    let inno_file = File::new("innosetup-6.5.1.exe").unwrap();

    let inno = Inno::new(file).unwrap();

    println!("{}", inno.header.app_name);
}

Acknowledgements

License

Licensed under either of:

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.