unshield 0.2.0

Extract files from InstallShield Z archives.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[cfg(test)]
pub const EXAMPLES: &[(&[u8], &[(&str, &[u8])])] = &[
    (
        include_bytes!("examples/demo.z"),
        &[
            ("hello.txt", b"Hello, world!"),
            ("subdir\\test.txt", b"fnord"),
        ],
    ),
    (
        include_bytes!("examples/undhr.z"),
        &[("undhr.md", include_bytes!("examples/undhr.md"))],
    ),
];