Esper Thomson
Esper Thomson
It does seem strange, but I'm fairly certain this issue is caused by the downloader. This issue has yet to happen to me when I was connecting directly to the...
@rossmacarthur This can be fixed by using [inline `const` blocks](https://github.com/rust-lang/rfcs/pull/2920) instead of `const` items. Inline `const` blocks can capture generic parameters from their scope and don't require type annotations. This...
After several attempts to implement this using inline `const` blocks, I don't think it's actually possible today without basic [`generic_const_exprs`](https://github.com/rust-lang/rust/issues/76560) support, because the length of the underlying array would depend...
Wow, I'm impressed that adding one markdown file made the CI fail. 🤣
There we go. 😌
I've actually been using `spreet` as a general-purpose sprite packer, as part of my build workflow for a video game mod. There's no specific sprite format used here, just the...