summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-11-12 11:01:21 -0500
committerFreya Murphy <freya@freyacat.org>2025-11-12 23:48:49 -0500
commitab1392bba09f8b58dc496b3a3f5b980bc5b475c8 (patch)
tree2044f352eb84e473d037e0b74428914c04e5a754 /Cargo.toml
parentdungeon: bsp generate should return a floor to use same single rng (diff)
downloadDungeonCrawl-ab1392bba09f8b58dc496b3a3f5b980bc5b475c8.tar.gz
DungeonCrawl-ab1392bba09f8b58dc496b3a3f5b980bc5b475c8.tar.bz2
DungeonCrawl-ab1392bba09f8b58dc496b3a3f5b980bc5b475c8.zip
dungeon: switch to only using small rng from rand
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 393b189..71f1f6d 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -29,7 +29,7 @@ features = ["help"]
[workspace.dependencies.rand]
version = "0.9"
default-features = false
-features = ["std_rng", "os_rng"]
+features = ["small_rng", "os_rng"]
[workspace.dependencies.raylib]
git = "https://github.com/raylib-rs/raylib-rs"