Implementation of rand
for wasm32-unknown-unknown in Rust using
#[wasm_bindgen]
.
First add a dependency to your Cargo.toml:
```toml
[dependencies] wbg-rand = "0.4" ```
Next add the following to your crate:
```rust extern crate wbg_rand;
use wbgrand::{Rng, wasmrand}; ```
The rand
crate is reexported from the wbg-rand
crate so the Rng
trait here
is the same as it is upstream.
And now you use wasm_rand
just like you would thread_rng
!
This project is licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this project by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.