From df5b34f201d216ad50e58b5041afbf5a7bf64071 Mon Sep 17 00:00:00 2001 From: Guillaume Anthouard Date: Thu, 16 Nov 2023 23:30:14 +0200 Subject: [PATCH] fix: remove local dependency on egui_ui_refresh for deployment --- Cargo.lock | 2 ++ crates/gui/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index 8377993..42fbafb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -843,6 +843,8 @@ dependencies = [ [[package]] name = "egui_ui_refresh" version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94d5848c4a2b70fd527d572fa4655a5e62b7a3231889d0dc9ef529991fc8c01c" dependencies = [ "egui", ] diff --git a/crates/gui/Cargo.toml b/crates/gui/Cargo.toml index 7685877..3857d14 100644 --- a/crates/gui/Cargo.toml +++ b/crates/gui/Cargo.toml @@ -18,7 +18,7 @@ include = ["src/**/*", "README.md", "CHANGELOG.md", "assets/Haxe.sublime-syntax" eframe = { version = "0.23", default-features = false } # Docking tabs egui_dock = { version = "0.8" } -egui_ui_refresh = { version = "0.1", path = "../../../egui_ui_refresh" } +egui_ui_refresh = { version = "0.1" } #, path = "../../../egui_ui_refresh" } # Core library hlbc = { version = "0.7", path = "../hlbc", default-features = false } # Decompiler