summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-11-10 19:14:50 -0500
committerFreya Murphy <freya@freyacat.org>2025-11-10 19:15:02 -0500
commit0f76cc3d9078b18e509dc88899daf23102019335 (patch)
tree57996b434f191d83ed6637570fef7134205e9164 /Cargo.toml
parentCheckpoint writeup started (diff)
downloadDungeonCrawl-0f76cc3d9078b18e509dc88899daf23102019335.tar.gz
DungeonCrawl-0f76cc3d9078b18e509dc88899daf23102019335.tar.bz2
DungeonCrawl-0f76cc3d9078b18e509dc88899daf23102019335.zip
minimize dependencies & features
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml17
1 files changed, 14 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml
index e815f84..7d7f8da 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -16,14 +16,21 @@ publish = false
rust-version = "1.87"
[workspace.dependencies]
-clap = { version = "4", features = ["derive"] }
dungeon = { path = "dungeon" }
game = { path = "game" }
graphics = { path = "graphics" }
-rand = "0.9"
-strum = "0.27"
strum_macros = "0.27"
+[workspace.dependencies.argh]
+version = "0.1"
+default-features = false
+features = ["help"]
+
+[workspace.dependencies.rand]
+version = "0.9"
+default-features = false
+features = ["std_rng", "os_rng"]
+
[workspace.dependencies.raylib]
git = "https://github.com/raylib-rs/raylib-rs"
version = "5.7.0"
@@ -38,6 +45,10 @@ features = [
"SUPPORT_TRACELOG",
]
+[workspace.dependencies.strum]
+version = "0.27"
+default-features = false
+
[workspace.lints.clippy]
# nursery
branches_sharing_code = "warn"