next branch

pull/351/head
Lucas Nogueira 2 years ago
parent 954787ee2e
commit e92eef782d
No known key found for this signature in database
GPG Key ID: FFEA6C72E73482F1

@ -3603,7 +3603,7 @@ checksum = "fd1ba337640d60c3e96bc6f0638a939b9c9a7f2c316a1598c279828b3d1dc8c5"
[[package]] [[package]]
name = "tauri" name = "tauri"
version = "2.0.0-alpha.8" version = "2.0.0-alpha.8"
source = "git+https://github.com/tauri-apps/tauri?branch=feat/channel#9122e27ed863a5cb2bf13dc0dd0433c7387e141b" source = "git+https://github.com/tauri-apps/tauri?branch=next#9122e27ed863a5cb2bf13dc0dd0433c7387e141b"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"bytes", "bytes",
@ -3659,7 +3659,7 @@ dependencies = [
[[package]] [[package]]
name = "tauri-build" name = "tauri-build"
version = "2.0.0-alpha.4" version = "2.0.0-alpha.4"
source = "git+https://github.com/tauri-apps/tauri?branch=feat/channel#9122e27ed863a5cb2bf13dc0dd0433c7387e141b" source = "git+https://github.com/tauri-apps/tauri?branch=next#9122e27ed863a5cb2bf13dc0dd0433c7387e141b"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"cargo_toml", "cargo_toml",
@ -3680,7 +3680,7 @@ dependencies = [
[[package]] [[package]]
name = "tauri-codegen" name = "tauri-codegen"
version = "2.0.0-alpha.4" version = "2.0.0-alpha.4"
source = "git+https://github.com/tauri-apps/tauri?branch=feat/channel#9122e27ed863a5cb2bf13dc0dd0433c7387e141b" source = "git+https://github.com/tauri-apps/tauri?branch=next#9122e27ed863a5cb2bf13dc0dd0433c7387e141b"
dependencies = [ dependencies = [
"base64 0.21.0", "base64 0.21.0",
"brotli", "brotli",
@ -3705,7 +3705,7 @@ dependencies = [
[[package]] [[package]]
name = "tauri-macros" name = "tauri-macros"
version = "2.0.0-alpha.4" version = "2.0.0-alpha.4"
source = "git+https://github.com/tauri-apps/tauri?branch=feat/channel#9122e27ed863a5cb2bf13dc0dd0433c7387e141b" source = "git+https://github.com/tauri-apps/tauri?branch=next#9122e27ed863a5cb2bf13dc0dd0433c7387e141b"
dependencies = [ dependencies = [
"heck 0.4.1", "heck 0.4.1",
"proc-macro2", "proc-macro2",
@ -3897,7 +3897,7 @@ dependencies = [
[[package]] [[package]]
name = "tauri-runtime" name = "tauri-runtime"
version = "0.13.0-alpha.4" version = "0.13.0-alpha.4"
source = "git+https://github.com/tauri-apps/tauri?branch=feat/channel#9122e27ed863a5cb2bf13dc0dd0433c7387e141b" source = "git+https://github.com/tauri-apps/tauri?branch=next#9122e27ed863a5cb2bf13dc0dd0433c7387e141b"
dependencies = [ dependencies = [
"gtk", "gtk",
"http", "http",
@ -3918,7 +3918,7 @@ dependencies = [
[[package]] [[package]]
name = "tauri-runtime-wry" name = "tauri-runtime-wry"
version = "0.13.0-alpha.4" version = "0.13.0-alpha.4"
source = "git+https://github.com/tauri-apps/tauri?branch=feat/channel#9122e27ed863a5cb2bf13dc0dd0433c7387e141b" source = "git+https://github.com/tauri-apps/tauri?branch=next#9122e27ed863a5cb2bf13dc0dd0433c7387e141b"
dependencies = [ dependencies = [
"cocoa", "cocoa",
"gtk", "gtk",
@ -3938,7 +3938,7 @@ dependencies = [
[[package]] [[package]]
name = "tauri-utils" name = "tauri-utils"
version = "2.0.0-alpha.4" version = "2.0.0-alpha.4"
source = "git+https://github.com/tauri-apps/tauri?branch=feat/channel#9122e27ed863a5cb2bf13dc0dd0433c7387e141b" source = "git+https://github.com/tauri-apps/tauri?branch=next#9122e27ed863a5cb2bf13dc0dd0433c7387e141b"
dependencies = [ dependencies = [
"aes-gcm", "aes-gcm",
"brotli", "brotli",

@ -30,8 +30,8 @@ tauri-plugin-shell = { path = "../../../plugins/shell" }
tauri-plugin-updater = { path = "../../../plugins/updater" } tauri-plugin-updater = { path = "../../../plugins/updater" }
[patch.crates-io] [patch.crates-io]
tauri = { git = "https://github.com/tauri-apps/tauri", branch = "feat/channel" } tauri = { git = "https://github.com/tauri-apps/tauri", branch = "next" }
tauri-build = { git = "https://github.com/tauri-apps/tauri", branch = "feat/channel" } tauri-build = { git = "https://github.com/tauri-apps/tauri", branch = "next" }
[dependencies.tauri] [dependencies.tauri]
version = "2.0.0-alpha.8" version = "2.0.0-alpha.8"

@ -18,5 +18,5 @@ edition = "2021"
#thiserror.workspace = true #thiserror.workspace = true
serde = "1" serde = "1"
thiserror = "1" thiserror = "1"
tauri = { git = "https://github.com/tauri-apps/tauri", branch = "feat/channel" } tauri = { git = "https://github.com/tauri-apps/tauri", branch = "next" }
anyhow = "1" anyhow = "1"

@ -12,7 +12,7 @@ edition = "2021"
#tauri.workspace = true #tauri.workspace = true
#log.workspace = true #log.workspace = true
#thiserror.workspace = true #thiserror.workspace = true
tauri = { git = "https://github.com/tauri-apps/tauri", branch = "feat/channel" } tauri = { git = "https://github.com/tauri-apps/tauri", branch = "next" }
serde = "1" serde = "1"
serde_json = "1" serde_json = "1"
thiserror = "1" thiserror = "1"

@ -11,7 +11,7 @@ edition = "2021"
#serde.workspace = true #serde.workspace = true
#serde_json.workspace = true #serde_json.workspace = true
#thiserror.workspace = true #thiserror.workspace = true
tauri = { git = "https://github.com/tauri-apps/tauri", branch = "feat/channel", features = ["updater", "fs-extract-api"] } tauri = { git = "https://github.com/tauri-apps/tauri", branch = "next", features = ["updater", "fs-extract-api"] }
serde = "1" serde = "1"
serde_json = "1" serde_json = "1"
thiserror = "1" thiserror = "1"
@ -37,6 +37,3 @@ tokio-test = "0.4.2"
native-tls = [ "reqwest/native-tls" ] native-tls = [ "reqwest/native-tls" ]
native-tls-vendored = [ "reqwest/native-tls-vendored" ] native-tls-vendored = [ "reqwest/native-tls-vendored" ]
rustls-tls = [ "reqwest/rustls-tls" ] rustls-tls = [ "reqwest/rustls-tls" ]
[patch.'https://github.com/tauri-apps/tauri']
tauri = { path = "../../../tauri/core/tauri" }

@ -8,7 +8,7 @@ edition = "2021"
tauri-build = { path = "../../../../../tauri/core/tauri-build", features = [] } tauri-build = { path = "../../../../../tauri/core/tauri-build", features = [] }
[dependencies] [dependencies]
tauri = { path = "../../../../../tauri/core/tauri", features = [] } tauri = { git = "https://github.com/tauri-apps/tauri", branch = "next" }
tauri-plugin-updater = { path = "../.." } tauri-plugin-updater = { path = "../.." }
tiny_http = "0.11" tiny_http = "0.11"
serde = "1" serde = "1"

Loading…
Cancel
Save