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 /game/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 'game/Cargo.toml')
| -rw-r--r-- | game/Cargo.toml | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/game/Cargo.toml b/game/Cargo.toml index 0fb5475..d3084d4 100644 --- a/game/Cargo.toml +++ b/game/Cargo.toml @@ -1,11 +1,15 @@ [package] name = "game" -version = "0.1.0" -edition = "2024" +version.workspace = true +authors.workspace = true +license.workspace = true +edition.workspace = true +publish.workspace = true +rust-version.workspace = true [dependencies] -dungeon = { path = "../dungeon" } -graphics = { path = "../graphics" } +dungeon.workspace = true +graphics.workspace = true [lints] workspace = true |