inno 0.6.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.6"

Example

use inno::{Inno, error::InnoResult};

fn main() -> InnoResult<()> {
    let inno_file = File::new("innosetup-7.1.0-x64.exe").unwrap();

    let inno = Inno::new(file)?;

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

    Ok(())
}

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.