From 70f8119fae00eb4023789b2277430ac0477de9e9 Mon Sep 17 00:00:00 2001 From: Ted Steen Date: Fri, 8 Sep 2023 11:27:11 +0300 Subject: [PATCH] fix dependency --- crates/egui_glow/Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/crates/egui_glow/Cargo.toml b/crates/egui_glow/Cargo.toml index ce6bdb9b888..8013f810750 100644 --- a/crates/egui_glow/Cargo.toml +++ b/crates/egui_glow/Cargo.toml @@ -82,6 +82,10 @@ glutin-winit = "0.3.0" raw-window-handle = "0.5.0" # examples/pure_glow_sdl2 env_logger = "0.10" +sdl2 = { git = "https://github.com/Rust-SDL2/rust-sdl2.git", features = [ + "bundled", + "static-link", +] } [[example]] name = "pure_glow_winit"