chorus icon indicating copy to clipboard operation
chorus copied to clipboard

Add `#![no_std]` for wasm compilation

Open bitfl0wer opened this issue 2 years ago • 0 comments

stdlib is heavily broken on wasm32-unknown-unknown. Using methods or structs exported by std will mostly not cause compile errors, but will crash when called at runtime. This is the case for almost everything within std, which is why we should seek to forbid std usage on that target.

bitfl0wer avatar Jan 19 '24 14:01 bitfl0wer