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 /dungeon | |
| 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 'dungeon')
| -rw-r--r-- | dungeon/Cargo.toml | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/dungeon/Cargo.toml b/dungeon/Cargo.toml index 2dc954e..dfa8404 100644 --- a/dungeon/Cargo.toml +++ b/dungeon/Cargo.toml @@ -1,13 +1,17 @@ [package] name = "dungeon" -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] -rand = "0.9" -rand_chacha = "0.9.0" -strum = "0.27.2" -strum_macros = "0.27.2" +rand.workspace = true +rand_chacha.workspace = true +strum.workspace = true +strum_macros.workspace = true [lints] workspace = true |