From 39b144df42e6f3e485beef4d0d31101f13d4c24e Mon Sep 17 00:00:00 2001 From: Lucas Nogueira Date: Mon, 20 Mar 2023 09:02:13 -0300 Subject: [PATCH] chore(deps): update tauri to 2.0.0-alpha.4, tauri-build to 2.0.0-alpha.2 --- Cargo.lock | 35 +++++++++++++++++++++-------------- Cargo.toml | 4 ++-- 2 files changed, 23 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 926ca69a..3555c1a3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4246,8 +4246,9 @@ dependencies = [ [[package]] name = "tauri" -version = "2.0.0-alpha.3" -source = "git+https://github.com/tauri-apps/tauri?branch=next#9c8276fe030183c6c0698331588a54948bc549f9" +version = "2.0.0-alpha.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e113835bb47f8cab6d1fb3b1a2e3d96ddd64730248638a5ab3f46a598c02a81c" dependencies = [ "anyhow", "bytes 1.4.0", @@ -4297,8 +4298,9 @@ dependencies = [ [[package]] name = "tauri-build" -version = "2.0.0-alpha.1" -source = "git+https://github.com/tauri-apps/tauri?branch=next#9c8276fe030183c6c0698331588a54948bc549f9" +version = "2.0.0-alpha.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "383f94e1b46fb4e249e4eafbd0589ffbe02b241b49dadebd47640598a17e584e" dependencies = [ "anyhow", "cargo_toml", @@ -4316,8 +4318,9 @@ dependencies = [ [[package]] name = "tauri-codegen" -version = "2.0.0-alpha.1" -source = "git+https://github.com/tauri-apps/tauri?branch=next#9c8276fe030183c6c0698331588a54948bc549f9" +version = "2.0.0-alpha.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5914e68c4ba4d9b761373dcce86f6721de78c2ffd84f376b1e0fee9321c0fc7e" dependencies = [ "base64 0.21.0", "brotli", @@ -4341,8 +4344,9 @@ dependencies = [ [[package]] name = "tauri-macros" -version = "2.0.0-alpha.1" -source = "git+https://github.com/tauri-apps/tauri?branch=next#9c8276fe030183c6c0698331588a54948bc549f9" +version = "2.0.0-alpha.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "adedb0845af0d5840b54410f83135bb285ab372956678e0b12046a87999486fb" dependencies = [ "heck", "proc-macro2", @@ -4562,8 +4566,9 @@ dependencies = [ [[package]] name = "tauri-runtime" -version = "0.13.0-alpha.1" -source = "git+https://github.com/tauri-apps/tauri?branch=next#9c8276fe030183c6c0698331588a54948bc549f9" +version = "0.13.0-alpha.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "11c9ce3ab30f6a95a09131510a624d5de24455ba9e8fcae6a6fe9e0922f833c8" dependencies = [ "gtk", "http", @@ -4583,8 +4588,9 @@ dependencies = [ [[package]] name = "tauri-runtime-wry" -version = "0.13.0-alpha.1" -source = "git+https://github.com/tauri-apps/tauri?branch=next#9c8276fe030183c6c0698331588a54948bc549f9" +version = "0.13.0-alpha.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0e176af0987e4ced285bec0faf56eed0f13a1b3851d9176fa6758181f867cdc3" dependencies = [ "cocoa", "gtk", @@ -4603,8 +4609,9 @@ dependencies = [ [[package]] name = "tauri-utils" -version = "2.0.0-alpha.1" -source = "git+https://github.com/tauri-apps/tauri?branch=next#9c8276fe030183c6c0698331588a54948bc549f9" +version = "2.0.0-alpha.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3a488bb0c60e2ce9efbe8283a11299675e01f55caf12304889f8639b3c35713c" dependencies = [ "brotli", "ctor", diff --git a/Cargo.toml b/Cargo.toml index 46b0ee6a..bbc07433 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,8 +5,8 @@ resolver = "2" [workspace.dependencies] serde = { version = "1", features = ["derive"] } log = "0.4" -tauri = { git = "https://github.com/tauri-apps/tauri", branch = "next" } -tauri-build = { git = "https://github.com/tauri-apps/tauri", branch = "next" } +tauri = "2.0.0-alpha.4" +tauri-build = "2.0.0-alpha.2" serde_json = "1" thiserror = "1"