diff options
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 25 |
1 files changed, 24 insertions, 1 deletions
@@ -1,6 +1,29 @@ [workspace] -members = ["dungeon", "game", "graphics"] resolver = "2" +members = ["dungeon", "game", "graphics"] + +[workspace.package] +version = "0.1.0" +authors = [ + "Freya Murphy <freya@freyacat.org>", + "Audrey Fuller <alf9310@rit.edu>", + "Yusuf Elsharawy <yse2561@rit.edu>", + "Ryan Symons <ras1178@rit.edu>", +] +edition = "2024" +license = "MIT" +publish = false +rust-version = "1.85" + +[workspace.dependencies] +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" [workspace.lints.clippy] # nursery |