From a58423d50ed61224eecc4ee9aa247557836d4c12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gon=C3=A7alo=20Rica=20Pais=20da=20Silva?= Date: Tue, 23 Jul 2024 17:18:51 +0200 Subject: [PATCH] chore: Update README --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 09c67ce..597ec8c 100644 --- a/README.md +++ b/README.md @@ -20,14 +20,14 @@ All supported PRNGs and compatible structs are provided by the `bevy_prng` crate #### `bevy_rand` feature activation ```toml rand_core = "0.6" -bevy_rand = { version = "0.7", features = ["rand_chacha", "wyrand"] } +bevy_rand = { version = "0.8", features = ["rand_chacha", "wyrand"] } ``` #### `bevy_prng` feature activation ```toml rand_core = "0.6" -bevy_rand = "0.7" -bevy_prng = { version = "0.7", features = ["rand_chacha", "wyrand"] } +bevy_rand = "0.8" +bevy_prng = { version = "0.8", features = ["rand_chacha", "wyrand"] } ``` The summary of what RNG algorithm to choose is: pick `wyrand` for almost all cases as it is faster and more portable than other algorithms. For cases where you need the extra assurance of entropy quality (for security, etc), then use `rand_chacha`. For more information, [go here](https://docs.rs/bevy_rand/latest/bevy_rand/tutorial/ch01_choosing_prng/index.html). @@ -128,7 +128,7 @@ fn setup_npc_from_source( | `bevy` | `bevy_rand` | | ------ | ------------ | -| v0.14 | v0.7 | +| v0.14 | v0.7 - v0.8 | | v0.13 | v0.5 - v0.6 | | v0.12 | v0.4 | | v0.11 | v0.2 - v0.3 | @@ -138,7 +138,7 @@ The versions of `rand_core`/`rand` that `bevy_rand` is compatible with is as fol | `bevy_rand` | `rand_core` | `rand` | | ------------ | ----------- | ------ | -| v0.1 -> v0.7 | v0.6 | v0.8 | +| v0.1 -> v0.8 | v0.6 | v0.8 | ## Migrations