Results 46 comments of Matthew D. Steele

Yes, it was written that way to avoid needing a `Seek` bound. At the time I was trying to stay similar to the API of the [`tar`](https://crates.io/crates/tar) crate, which also...

Thanks. It looks like that CAB file is using `Lzx(21)` compression, and those errors seem to be coming from the `lzxd` crate (see https://github.com/Lonami/lzxd/blob/ba70d7f8292ce840267b1ab89d44a9685c72ba1f/src/lib.rs#L90). The `cab` crate is already using...

I tried to reproduce this, starting with these steps: 1. Download https://www.libreoffice.org/donate/dl/win-x86_64/7.2.2/en-US/LibreOffice_7.2.2_Win_x64.msi 2. From `rust-msi` repo, run `cargo run --release --example msiinfo -- extract LibreOffice_7.2.2_Win_x64.msi libreoffice1.cab > libreoffice1.cab` 3. From...

This crate is intended as a lower-level library for manipulating MSI files -- the idea is that it's the sort of library one could use to build a WiX-like or...

Looks interesting! If cargo-deb were usable as a library, and supported the features that cargo-bundle needs (like generating .desktop files and app icons), then it would probably make sense for...

Unfortunately, I haven't been able to provide any active development on this project lately. However, PRs are always welcome, and I do still try to keep up with reviewing those....

Some additional OS-specific fields we could consider adding: * `deb_depends` (list of strings) - this would also take care of issue #25 * `deb_postinst` (string) * `deb_prerm` (string) * `ios_interface_orientation`...

Yeah, I haven't been able to provide any active development on this project lately. However, PRs are always welcome, and I do still try to keep up with reviewing those....

I'm not aware of anyone currently working on this. PRs would be very welcome! A while back I took an initial stab in [`src/bundle/msi_bundle.rs`](https://github.com/burtonageo/cargo-bundle/blob/master/src/bundle/msi_bundle.rs) at using the `msi` crate to...

Sure, PRs would be welcome!