diff --git a/examples/api/src-tauri/Cargo.lock b/examples/api/src-tauri/Cargo.lock index 74926819..d7722fc9 100644 --- a/examples/api/src-tauri/Cargo.lock +++ b/examples/api/src-tauri/Cargo.lock @@ -3604,6 +3604,7 @@ checksum = "fd1ba337640d60c3e96bc6f0638a939b9c9a7f2c316a1598c279828b3d1dc8c5" [[package]] name = "tauri" version = "2.0.0-alpha.8" +source = "git+https://github.com/tauri-apps/tauri?branch=next#0ab5f40d3a4207f20e4440587b41c4e78f91d233" dependencies = [ "anyhow", "bytes", @@ -3659,6 +3660,7 @@ dependencies = [ [[package]] name = "tauri-build" version = "2.0.0-alpha.4" +source = "git+https://github.com/tauri-apps/tauri?branch=next#0ab5f40d3a4207f20e4440587b41c4e78f91d233" dependencies = [ "anyhow", "cargo_toml", @@ -3679,6 +3681,7 @@ dependencies = [ [[package]] name = "tauri-codegen" version = "2.0.0-alpha.4" +source = "git+https://github.com/tauri-apps/tauri?branch=next#0ab5f40d3a4207f20e4440587b41c4e78f91d233" dependencies = [ "base64 0.21.0", "brotli", @@ -3703,6 +3706,7 @@ dependencies = [ [[package]] name = "tauri-macros" version = "2.0.0-alpha.4" +source = "git+https://github.com/tauri-apps/tauri?branch=next#0ab5f40d3a4207f20e4440587b41c4e78f91d233" dependencies = [ "heck 0.4.1", "proc-macro2", @@ -3903,6 +3907,7 @@ dependencies = [ [[package]] name = "tauri-runtime" version = "0.13.0-alpha.4" +source = "git+https://github.com/tauri-apps/tauri?branch=next#0ab5f40d3a4207f20e4440587b41c4e78f91d233" dependencies = [ "gtk", "http", @@ -3923,6 +3928,7 @@ dependencies = [ [[package]] name = "tauri-runtime-wry" version = "0.13.0-alpha.4" +source = "git+https://github.com/tauri-apps/tauri?branch=next#0ab5f40d3a4207f20e4440587b41c4e78f91d233" dependencies = [ "cocoa", "gtk", @@ -3942,6 +3948,7 @@ dependencies = [ [[package]] name = "tauri-utils" version = "2.0.0-alpha.4" +source = "git+https://github.com/tauri-apps/tauri?branch=next#0ab5f40d3a4207f20e4440587b41c4e78f91d233" dependencies = [ "aes-gcm", "brotli", diff --git a/examples/api/src-tauri/Cargo.toml b/examples/api/src-tauri/Cargo.toml index 1cfd4e57..fe8c70fe 100644 --- a/examples/api/src-tauri/Cargo.toml +++ b/examples/api/src-tauri/Cargo.toml @@ -31,14 +31,8 @@ tauri-plugin-updater = { path = "../../../plugins/updater" } tauri-plugin-window = { path = "../../../plugins/window" } [patch.crates-io] -#tauri = { git = "https://github.com/tauri-apps/tauri", branch = "next" } -#tauri-build = { git = "https://github.com/tauri-apps/tauri", branch = "next" } -tauri = { path = "../../../../tauri/core/tauri" } -tauri-build = { path = "../../../../tauri/core/tauri-build" } - -[patch.'https://github.com/tauri-apps/tauri'] -tauri = { path = "../../../../tauri/core/tauri" } -tauri-build = { path = "../../../../tauri/core/tauri-build" } +tauri = { git = "https://github.com/tauri-apps/tauri", branch = "next" } +tauri-build = { git = "https://github.com/tauri-apps/tauri", branch = "next" } [dependencies.tauri] version = "2.0.0-alpha.8"