chorus
chorus copied to clipboard
Add `#![no_std]` for wasm compilation
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.