diff options
| author | Freya Murphy <freya@freyacat.org> | 2025-10-30 14:29:13 -0400 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2025-10-30 14:45:54 -0400 |
| commit | 5878750cfd9612bcdc559c5a5fbf2330cde84aab (patch) | |
| tree | a9eb8ab20b91cf83cc77602310d65b3881aa3806 /Cargo.toml | |
| parent | graphics: move wayland support to a feature (diff) | |
| download | DungeonCrawl-5878750cfd9612bcdc559c5a5fbf2330cde84aab.tar.gz DungeonCrawl-5878750cfd9612bcdc559c5a5fbf2330cde84aab.tar.bz2 DungeonCrawl-5878750cfd9612bcdc559c5a5fbf2330cde84aab.zip | |
refactor Cargo.toml files
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 |