From 934f84cf562e5b2970a85922da542ffbf973ce10 Mon Sep 17 00:00:00 2001 From: Lucas Fernandes Nogueira Date: Wed, 24 Jun 2020 21:48:24 -0300 Subject: [PATCH] fix(tauri) use forked web-view and webview-sys (#713) version updates --- tauri/Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tauri/Cargo.toml b/tauri/Cargo.toml index 29ecb5cfe..9c2e05966 100644 --- a/tauri/Cargo.toml +++ b/tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri" -version = "0.6.0" +version = "0.6.1" authors = [ "Lucas Fernandes Gonçalves Nogueira ", "Daniel Thompson-Yvetot ", @@ -19,8 +19,8 @@ features = [ "all-api" ] [dependencies] serde_json = "1.0" serde = { version = "1.0", features = [ "derive" ] } -webview-sys = { git = "https://github.com/tauri-apps/web-view", version = "0.5.0" } -web-view = { git = "https://github.com/tauri-apps/web-view", version = "0.6.2" } +tauri-webview-sys = "0.5.0" +tauri-web-view = "0.6.2" tauri_includedir = "0.5.0" phf = "0.8.0" base64 = "0.12.2" @@ -46,7 +46,7 @@ serde = { version = "1.0", features = [ "derive" ] } [features] cli = [ "tauri-api/cli" ] -edge = [ "web-view/edge" ] +edge = [ "tauri-web-view/edge" ] embedded-server = [ "tiny_http" ] no-server = [ ] all-api = [ "tauri-api/notification" ]