1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO 2# 3# When uploading crates to the registry Cargo will automatically 4# "normalize" Cargo.toml files for maximal compatibility 5# with all versions of Cargo and also rewrite `path` dependencies 6# to registry (e.g., crates.io) dependencies. 7# 8# If you are reading this file be aware that the original Cargo.toml 9# will likely look very different (and much more reasonable). 10# See Cargo.toml.orig for the original contents. 11 12[package] 13edition = "2018" 14rust-version = "1.36" 15name = "fastrand" 16version = "2.0.2" 17authors = ["Stjepan Glavina <[email protected]>"] 18exclude = ["/.*"] 19description = "A simple and fast random number generator" 20readme = "README.md" 21keywords = [ 22 "simple", 23 "fast", 24 "rand", 25 "random", 26 "wyrand", 27] 28categories = ["algorithms"] 29license = "Apache-2.0 OR MIT" 30repository = "https://github.com/smol-rs/fastrand" 31 32[package.metadata.docs.rs] 33all-features = true 34rustdoc-args = [ 35 "--cfg", 36 "docsrs", 37] 38 39[dev-dependencies.getrandom] 40version = "0.2" 41 42[dev-dependencies.rand] 43version = "0.8" 44 45[dev-dependencies.wyhash] 46version = "0.5" 47 48[features] 49alloc = [] 50default = ["std"] 51js = [ 52 "std", 53 "getrandom", 54] 55std = ["alloc"] 56 57[target."cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))".dependencies.getrandom] 58version = "0.2" 59features = ["js"] 60optional = true 61 62[target."cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))".dev-dependencies.getrandom] 63version = "0.2" 64features = ["js"] 65 66[target."cfg(all(any(target_arch = \"wasm32\", target_arch = \"wasm64\"), target_os = \"unknown\"))".dev-dependencies.wasm-bindgen-test] 67version = "0.3" 68