A barely functional, wildly incomplete and basically undocumented Rust crate whose aim is to let you write Games for the Playdate handheld gaming system in Rust.
MIT License
235
stars
24
forks
source link
Replace heapless with the much smaller arrayvec #70
heapless has surprisingly a lot of dependencies, and the only thing it is used for is a stack-allocated string in the panic handler. None of these dependencies are needed.
heapless
has surprisingly a lot of dependencies, and the only thing it is used for is a stack-allocated string in the panic handler. None of these dependencies are needed.After replacing it with
arrayvec
:Much better!