From aeade94d5e7677cf671e3ed57c1b2aeb0562ea47 Mon Sep 17 00:00:00 2001 From: Lucas Nogueira Date: Tue, 14 Feb 2023 14:37:50 -0300 Subject: [PATCH] fix(tauri-runtime-wry): re-export wry Regression from the latest merge from dev --- core/tauri-runtime-wry/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/core/tauri-runtime-wry/src/lib.rs b/core/tauri-runtime-wry/src/lib.rs index 090bde001..d45d05cef 100644 --- a/core/tauri-runtime-wry/src/lib.rs +++ b/core/tauri-runtime-wry/src/lib.rs @@ -67,6 +67,7 @@ use wry::{ webview::{FileDropEvent as WryFileDropEvent, Url, WebContext, WebView, WebViewBuilder}, }; +pub use wry; pub use wry::application::window::{Window, WindowBuilder as WryWindowBuilder, WindowId}; #[cfg(windows)] use wry::webview::WebviewExtWindows;