From 8811395bd5e84f7eabea1f66274799aa910a1169 Mon Sep 17 00:00:00 2001 From: Robert Bragg Date: Tue, 1 Oct 2024 10:29:21 +0100 Subject: [PATCH] Don't depend on egui from the workspace We're only using the branch for egui-winit and so we want to pick up egui from crates.io. --- crates/egui-winit/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/egui-winit/Cargo.toml b/crates/egui-winit/Cargo.toml index 95e8215b7d9..0332c400a5e 100644 --- a/crates/egui-winit/Cargo.toml +++ b/crates/egui-winit/Cargo.toml @@ -58,7 +58,7 @@ wayland = ["winit/wayland", "bytemuck"] x11 = ["winit/x11", "bytemuck"] [dependencies] -egui = { workspace = true, default-features = false, features = ["log"] } +egui = { version = "0.28", default-features = false, features = ["log"] } ahash.workspace = true log.workspace = true