Craig
Craig
See https://github.com/Craig-Macomber/infiniteRalph for an example.
You likely did not initialize the git sub-module. See https://git-scm.com/book/en/v2/Git-Tools-Submodules
It looks like libc is needed (in the top level Cargo.toml) only if `cfg(any(feature = "miniz-sys", feature = "any_zlib"))`. My understanding of the Cargo.toml format is we don't have a...
I can't see @scurest 's branch, but I made a similar one, this time replacing deflate with flate2 (which defaults to using miniz_oxide). https://github.com/Craig-Macomber/image-png/tree/flate2 (I didn't know how to handle...
flate2 no longer depends on libc making using it to reduce dependencies here actually make sense. I updated my branch accordingly.
> @Craig-Macomber could you make a PR with your changes? Done. #350 350
It would be nice if we could get some confirmations on if other people do or do not have this issue with quickemu configured windows VMs. If they do, it...
I just wrote [lol_alloc](https://github.com/Craig-Macomber/lol_alloc) as an alternative to wee_alloc. Initially I tried to fix wee_alloc but I found it easier and more interesting to just make a new WASM allocator...
> Cool. We'll flag unmaintained on it at [rustsec/advisory-db#1394](https://github.com/rustsec/advisory-db/issues/1394) to gently nudge any users .. just have to come up with a list of alternatives if possible other than the...
I also hit this on Ubuntu 22.04. I can confirm this fixed the error: ``` sudo apt-get install apparmor-utils sudo aa-complain /usr/bin/swtpm sudo apparmor_parser -r /etc/apparmor.d/usr.bin.swtpm ``` And caused Windows...