From 26f44b3bc10acb196bfdd07f932204163b02ffd7 Mon Sep 17 00:00:00 2001 From: tensor-programming Date: Sun, 5 Jan 2020 19:07:37 -0500 Subject: [PATCH] update tauriresult to work with tiny_http --- tauri/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tauri/src/lib.rs b/tauri/src/lib.rs index 0b4f7f5ac..414eb80f2 100644 --- a/tauri/src/lib.rs +++ b/tauri/src/lib.rs @@ -34,7 +34,7 @@ use web_view::WebView; pub use tauri_api as api; // Result alias -type TauriResult = Result>; +type TauriResult = Result>; thread_local!(static POOL: ThreadPool = ThreadPool::new(4));