From 28733d46cad17500b2a6df9d2453434b31d7b33f Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Mon, 10 Nov 2025 16:09:10 -0500 Subject: graphics: have raylib enable default features on windows --- graphics/Cargo.toml | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'graphics') 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 -- cgit v1.2.3-freya