Cargo Features

[dependencies]
bevy_rand = { version = "0.6.0", default-features = false, features = ["thread_local_entropy", "serialize", "rand_chacha", "rand_pcg", "rand_xoshiro", "wyrand"] }
default = serialize, thread_local_entropy

These default features are set whenever bevy_rand is added without default-features = false somewhere in the dependency tree.

thread_local_entropy default

Enables rand_chacha

serialize default

Enables serde and serde_derive and serde1 of rand_core

others

rand_chacha

Enables rand_chacha of bevy_prng

rand_pcg

Enables rand_pcg of bevy_prng

rand_xoshiro

Enables rand_xoshiro of bevy_prng

wyrand

Enables wyrand of bevy_prng