diff options
| author | Freya Murphy <freya@freyacat.org> | 2025-11-10 13:31:04 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2025-11-10 13:31:04 -0500 |
| commit | b50a79e6f9cd09973a406e5ccc50510aee3423f2 (patch) | |
| tree | 67d7dd951cc5680f6e2526f48bef7b1bde5db1c3 /Cargo.toml | |
| parent | update raylib to 5.6-dev (diff) | |
| download | DungeonCrawl-b50a79e6f9cd09973a406e5ccc50510aee3423f2.tar.gz DungeonCrawl-b50a79e6f9cd09973a406e5ccc50510aee3423f2.tar.bz2 DungeonCrawl-b50a79e6f9cd09973a406e5ccc50510aee3423f2.zip | |
graphics: have some window arguments passed in through cmd args, fix camera pos
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -16,6 +16,7 @@ publish = false rust-version = "1.87" [workspace.dependencies] +clap = { version = "4", features = ["derive"] } dungeon = { path = "dungeon" } game = { path = "game" } graphics = { path = "graphics" } @@ -37,6 +38,7 @@ features = [ "SUPPORT_CAMERA_SYSTEM", "SUPPORT_FILEFORMAT_BMP", "SUPPORT_STANDARD_FILEIO", + "SUPPORT_TRACELOG", ] [workspace.lints.clippy] |