10366b642c29d39ee27b6dadd3ffe054245c5500
The `rand` crate eventually depends on `getrandom` which requires a different feature set when running in the browser. WASM has no OS, and so no RNG provider... but the browser, specifically, has one that the JavaScript runtime can touch. Enabling the "wasm_js" feature on `getrandom` allowes it to use this backend. An extra config option must *also* be passed to `rustc`. THis can be set through the environment, or the config.toml. I've chosen the latter so I don't need to think about it very often.
Description
Languages
Rust
86.5%
HTML
7.3%
Makefile
5.5%
Dockerfile
0.7%