diff options
| author | Freya Murphy <freya@freyacat.org> | 2025-11-10 19:14:50 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2025-11-10 19:15:02 -0500 |
| commit | 0f76cc3d9078b18e509dc88899daf23102019335 (patch) | |
| tree | 57996b434f191d83ed6637570fef7134205e9164 /Cargo.toml | |
| parent | Checkpoint writeup started (diff) | |
| download | DungeonCrawl-0f76cc3d9078b18e509dc88899daf23102019335.tar.gz DungeonCrawl-0f76cc3d9078b18e509dc88899daf23102019335.tar.bz2 DungeonCrawl-0f76cc3d9078b18e509dc88899daf23102019335.zip | |
minimize dependencies & features
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 17 |
1 files changed, 14 insertions, 3 deletions
@@ -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" |