diff options
| author | Freya Murphy <freya@freyacat.org> | 2025-10-31 13:05:17 -0400 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2025-10-31 13:05:17 -0400 |
| commit | 0ab17728be9b6852499ba644f2aa5ddd5c473e73 (patch) | |
| tree | 45204e391c5d734ed4e755757c451e807524493f | |
| parent | graphics: add health/inventory ui rendering (diff) | |
| download | DungeonCrawl-0ab17728be9b6852499ba644f2aa5ddd5c473e73.tar.gz DungeonCrawl-0ab17728be9b6852499ba644f2aa5ddd5c473e73.tar.bz2 DungeonCrawl-0ab17728be9b6852499ba644f2aa5ddd5c473e73.zip | |
dungeon: remove unused rand_chacha
| -rw-r--r-- | Cargo.lock | 1 | ||||
| -rw-r--r-- | Cargo.toml | 1 | ||||
| -rw-r--r-- | dungeon/Cargo.toml | 1 |
3 files changed, 0 insertions, 3 deletions
@@ -87,7 +87,6 @@ name = "dungeon" version = "0.1.0" dependencies = [ "rand", - "rand_chacha", "strum", "strum_macros", ] @@ -20,7 +20,6 @@ dungeon = { path = "dungeon" } game = { path = "game" } graphics = { path = "graphics" } rand = "0.9" -rand_chacha = "0.9" raylib = "5.5" strum = "0.27" strum_macros = "0.27" diff --git a/dungeon/Cargo.toml b/dungeon/Cargo.toml index dfa8404..906058d 100644 --- a/dungeon/Cargo.toml +++ b/dungeon/Cargo.toml @@ -9,7 +9,6 @@ rust-version.workspace = true [dependencies] rand.workspace = true -rand_chacha.workspace = true strum.workspace = true strum_macros.workspace = true |