diff options
| author | Freya Murphy <freya@freyacat.org> | 2025-11-18 11:02:14 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2025-11-18 11:02:14 -0500 |
| commit | d9c41b9b6bdbccebe9f14c229dcee40543498d7e (patch) | |
| tree | de47fbc517f60adf32017833bfa252d33fe92da8 /Cargo.toml | |
| parent | dungeon: port rands SmallRng to be reproducible (diff) | |
| download | DungeonCrawl-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.toml | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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"] |