diff options
| author | Freya Murphy <freya@freyacat.org> | 2025-11-10 16:09:10 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2025-11-10 16:09:10 -0500 |
| commit | 28733d46cad17500b2a6df9d2453434b31d7b33f (patch) | |
| tree | 832013c13abaf589c6061b33189c7acb82c8510d /graphics/Cargo.toml | |
| parent | Added player movement check for walkab;e tiles (diff) | |
| download | DungeonCrawl-28733d46cad17500b2a6df9d2453434b31d7b33f.tar.gz DungeonCrawl-28733d46cad17500b2a6df9d2453434b31d7b33f.tar.bz2 DungeonCrawl-28733d46cad17500b2a6df9d2453434b31d7b33f.zip | |
graphics: have raylib enable default features on windows
Diffstat (limited to 'graphics/Cargo.toml')
| -rw-r--r-- | graphics/Cargo.toml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/graphics/Cargo.toml b/graphics/Cargo.toml index bfc5554..e898b04 100644 --- a/graphics/Cargo.toml +++ b/graphics/Cargo.toml @@ -18,3 +18,9 @@ workspace = true default = [] wayland = ["raylib/GLFW_BUILD_WAYLAND", "raylib/wayland"] sdl = ["raylib/sdl"] + +# Individual features seem to currently be +# broken on windows +[target.'cfg(target_os = "windows")'.dependencies.raylib] +workspace = true +default-features = true |