From 0ab17728be9b6852499ba644f2aa5ddd5c473e73 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Fri, 31 Oct 2025 13:05:17 -0400 Subject: dungeon: remove unused rand_chacha --- Cargo.lock | 1 - Cargo.toml | 1 - dungeon/Cargo.toml | 1 - 3 files changed, 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8d366d6..2871ce6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -87,7 +87,6 @@ name = "dungeon" version = "0.1.0" dependencies = [ "rand", - "rand_chacha", "strum", "strum_macros", ] diff --git a/Cargo.toml b/Cargo.toml index 93d27a1..ac2f59a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 -- cgit v1.2.3-freya