[package] name = "wasm4fun-random" version = "0.1.0" authors = ["Claudio Mattera "] edition = "2021" description = "Random number generators primitives and subsystems for WASM-4 fantasy console" readme = "Readme.md" homepage = "https://wasm4fun.neocities.org/" repository = "https://gitlab.com/claudiomattera/wasm4fun" license = "MIT OR Apache-2.0" keywords = [ "games", "wasm4", ] categories = [ "game-development", "no-std", ] [package.metadata.docs.rs] all-features = true default-target = "x86_64-unknown-linux-gnu" [features] default = [] debug = ["wasm4fun-log/debug"] [dependencies] wasm4fun-log = { version = "0.1.0", path = "../wasm4fun-log", default-features = false } wasm4fun-time = { version = "0.1.0", path = "../wasm4fun-time" } rand_core = { version = "0.6", default-features = false } rand_xorshift = { version = "0.3", default-features = false }