1 | [package] |
2 | name = "fastrand" |
3 | # When publishing a new version: |
4 | # - Update CHANGELOG.md |
5 | # - Create "v1.x.y" git tag |
6 | version = "1.9.0" |
7 | authors = ["Stjepan Glavina <stjepang@gmail.com>" ] |
8 | edition = "2018" |
9 | rust-version = "1.34" |
10 | description = "A simple and fast random number generator" |
11 | license = "Apache-2.0 OR MIT" |
12 | repository = "https://github.com/smol-rs/fastrand" |
13 | keywords = ["simple" , "fast" , "rand" , "random" , "wyrand" ] |
14 | categories = ["algorithms" ] |
15 | exclude = ["/.*" ] |
16 | |
17 | [target.'cfg(all(target_arch = "wasm32", not(target_os = "wasi")))'.dependencies] |
18 | instant = "0.1" |
19 | |
20 | [target.'cfg(all(target_arch = "wasm32", not(target_os = "wasi")))'.dev-dependencies] |
21 | instant = { version = "0.1" , features = ["wasm-bindgen" ] } |
22 | wasm-bindgen-test = "0.3" |
23 | getrandom = { version = "0.2" , features = ["js" ] } |
24 | |
25 | [dev-dependencies] |
26 | rand = "0.8" |
27 | wyhash = "0.5" |
28 | getrandom = "0.2" |
29 | |