From 0f76cc3d9078b18e509dc88899daf23102019335 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Mon, 10 Nov 2025 19:14:50 -0500 Subject: minimize dependencies & features --- Cargo.toml | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) (limited to 'Cargo.toml') 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" -- cgit v1.2.3-freya