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