diff options
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" |