summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-11-18 10:24:03 -0500
committerFreya Murphy <freya@freyacat.org>2025-11-18 10:24:03 -0500
commitff315c10418ced36de7996bd9a521f8b96c90631 (patch)
tree75a50d8c46cae6096e9b6693d62c3d21f82587ad /Cargo.toml
parentdungeon: split rng into game/level to make maps consistant (diff)
downloadDungeonCrawl-ff315c10418ced36de7996bd9a521f8b96c90631.tar.gz
DungeonCrawl-ff315c10418ced36de7996bd9a521f8b96c90631.tar.bz2
DungeonCrawl-ff315c10418ced36de7996bd9a521f8b96c90631.zip
dungeon: port rands SmallRng to be reproducible
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 8b2140e..86909dc 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -28,9 +28,9 @@ default-features = false
features = ["help"]
[workspace.dependencies.rand]
-version = "0.9"
+version = "0.10.0-rc.5"
default-features = false
-features = ["small_rng", "os_rng"]
+features = ["os_rng"]
[workspace.dependencies.raylib]
git = "https://github.com/raylib-rs/raylib-rs"