inno

Crates.ioinno
lib.rsinno
version0.2.0
created_at2025-07-29 00:11:43.163644+00
updated_at2025-08-31 17:55:37.354299+00
descriptionLibrary for reading Inno Setup executables
homepage
repositoryhttps://github.com/russellbanks/inno
max_upload_size
id1771743
size409,642
Russell Banks (russellbanks)

documentation

README

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.

Commit count: 12

cargo fmt