summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-11-18 11:02:14 -0500
committerFreya Murphy <freya@freyacat.org>2025-11-18 11:02:14 -0500
commitd9c41b9b6bdbccebe9f14c229dcee40543498d7e (patch)
treede47fbc517f60adf32017833bfa252d33fe92da8 /Cargo.toml
parentdungeon: port rands SmallRng to be reproducible (diff)
downloadDungeonCrawl-d9c41b9b6bdbccebe9f14c229dcee40543498d7e.tar.gz
DungeonCrawl-d9c41b9b6bdbccebe9f14c229dcee40543498d7e.tar.bz2
DungeonCrawl-d9c41b9b6bdbccebe9f14c229dcee40543498d7e.zip
dungeon: switch rng to rand_xoshiro
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml3
1 files changed, 2 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 86909dc..847fe53 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -20,6 +20,7 @@ dungeon = { path = "dungeon" }
game = { path = "game" }
getrandom = "0.3"
graphics = { path = "graphics" }
+rand_xoshiro = "0.7"
strum_macros = "0.27"
[workspace.dependencies.argh]
@@ -28,7 +29,7 @@ default-features = false
features = ["help"]
[workspace.dependencies.rand]
-version = "0.10.0-rc.5"
+version = "0.9"
default-features = false
features = ["os_rng"]