| [package] |
| name = "fastrand" |
| # When publishing a new version: |
| # - Update CHANGELOG.md |
| # - Create "v1.x.y" git tag |
| version = "1.9.0" |
| authors = ["Stjepan Glavina <[email protected]>"] |
| edition = "2018" |
| rust-version = "1.34" |
| description = "A simple and fast random number generator" |
| license = "Apache-2.0 OR MIT" |
| repository = "https://github.com/smol-rs/fastrand" |
| keywords = ["simple", "fast", "rand", "random", "wyrand"] |
| categories = ["algorithms"] |
| exclude = ["/.*"] |
| |
| [target.'cfg(all(target_arch = "wasm32", not(target_os = "wasi")))'.dependencies] |
| instant = "0.1" |
| |
| [target.'cfg(all(target_arch = "wasm32", not(target_os = "wasi")))'.dev-dependencies] |
| instant = { version = "0.1", features = ["wasm-bindgen"] } |
| wasm-bindgen-test = "0.3" |
| getrandom = { version = "0.2", features = ["js"] } |
| |
| [dev-dependencies] |
| rand = "0.8" |
| wyhash = "0.5" |
| getrandom = "0.2" |