[package] name = "koto_random" version = "0.14.1" authors = ["irh "] edition = "2021" license = "MIT" description = "A Koto library for working with random numbers" homepage = "https://koto.dev" repository = "https://github.com/koto-lang/koto" keywords = ["scripting", "language", "koto"] [features] default = ["arc"] arc = ["koto_runtime/arc"] rc = ["koto_runtime/rc"] [dependencies] koto_derive = { path = "../../crates/derive", version = "^0.14.1" } lazy_static = { workspace = true } rand = { workspace = true } rand_chacha = { workspace = true } [dependencies.koto_runtime] path = "../../crates/runtime" version = "^0.14.1" default-features = false [target.'cfg(target_arch = "wasm32")'.dependencies] getrandom = { workspace = true } [dev-dependencies] koto_test_utils = { path = "../../crates/test_utils", default-features = false }