update example tauri

pull/260/head
Lucas Nogueira 2 years ago
parent c6b587629c
commit e1f38cdecd
No known key found for this signature in database
GPG Key ID: FFEA6C72E73482F1

@ -1530,6 +1530,15 @@ dependencies = [
"syn", "syn",
] ]
[[package]]
name = "num_threads"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
dependencies = [
"libc",
]
[[package]] [[package]]
name = "objc" name = "objc"
version = "0.2.7" version = "0.2.7"
@ -2546,7 +2555,7 @@ dependencies = [
[[package]] [[package]]
name = "tauri" name = "tauri"
version = "2.0.0-alpha.3" version = "2.0.0-alpha.3"
source = "git+https://github.com/tauri-apps/tauri?branch=next#dffd8eb5a87558afc2fca21870643ff7dad9eb04" source = "git+https://github.com/tauri-apps/tauri?branch=next#037d488dee091730c8c01d9d09affcaa2386a463"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"attohttpc", "attohttpc",
@ -2603,7 +2612,7 @@ dependencies = [
[[package]] [[package]]
name = "tauri-build" name = "tauri-build"
version = "2.0.0-alpha.1" version = "2.0.0-alpha.1"
source = "git+https://github.com/tauri-apps/tauri?branch=next#dffd8eb5a87558afc2fca21870643ff7dad9eb04" source = "git+https://github.com/tauri-apps/tauri?branch=next#037d488dee091730c8c01d9d09affcaa2386a463"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"cargo_toml", "cargo_toml",
@ -2622,7 +2631,7 @@ dependencies = [
[[package]] [[package]]
name = "tauri-codegen" name = "tauri-codegen"
version = "2.0.0-alpha.1" version = "2.0.0-alpha.1"
source = "git+https://github.com/tauri-apps/tauri?branch=next#dffd8eb5a87558afc2fca21870643ff7dad9eb04" source = "git+https://github.com/tauri-apps/tauri?branch=next#037d488dee091730c8c01d9d09affcaa2386a463"
dependencies = [ dependencies = [
"base64 0.21.0", "base64 0.21.0",
"brotli", "brotli",
@ -2648,7 +2657,7 @@ dependencies = [
[[package]] [[package]]
name = "tauri-macros" name = "tauri-macros"
version = "2.0.0-alpha.1" version = "2.0.0-alpha.1"
source = "git+https://github.com/tauri-apps/tauri?branch=next#dffd8eb5a87558afc2fca21870643ff7dad9eb04" source = "git+https://github.com/tauri-apps/tauri?branch=next#037d488dee091730c8c01d9d09affcaa2386a463"
dependencies = [ dependencies = [
"heck 0.4.1", "heck 0.4.1",
"proc-macro2", "proc-macro2",
@ -2672,7 +2681,7 @@ dependencies = [
[[package]] [[package]]
name = "tauri-runtime" name = "tauri-runtime"
version = "0.13.0-alpha.1" version = "0.13.0-alpha.1"
source = "git+https://github.com/tauri-apps/tauri?branch=next#dffd8eb5a87558afc2fca21870643ff7dad9eb04" source = "git+https://github.com/tauri-apps/tauri?branch=next#037d488dee091730c8c01d9d09affcaa2386a463"
dependencies = [ dependencies = [
"gtk", "gtk",
"http", "http",
@ -2693,7 +2702,7 @@ dependencies = [
[[package]] [[package]]
name = "tauri-runtime-wry" name = "tauri-runtime-wry"
version = "0.13.0-alpha.1" version = "0.13.0-alpha.1"
source = "git+https://github.com/tauri-apps/tauri?branch=next#dffd8eb5a87558afc2fca21870643ff7dad9eb04" source = "git+https://github.com/tauri-apps/tauri?branch=next#037d488dee091730c8c01d9d09affcaa2386a463"
dependencies = [ dependencies = [
"cocoa", "cocoa",
"gtk", "gtk",
@ -2713,7 +2722,7 @@ dependencies = [
[[package]] [[package]]
name = "tauri-utils" name = "tauri-utils"
version = "2.0.0-alpha.1" version = "2.0.0-alpha.1"
source = "git+https://github.com/tauri-apps/tauri?branch=next#dffd8eb5a87558afc2fca21870643ff7dad9eb04" source = "git+https://github.com/tauri-apps/tauri?branch=next#037d488dee091730c8c01d9d09affcaa2386a463"
dependencies = [ dependencies = [
"brotli", "brotli",
"ctor", "ctor",
@ -2821,29 +2830,13 @@ dependencies = [
[[package]] [[package]]
name = "time" name = "time"
version = "0.3.19" version = "0.3.15"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53250a3b3fed8ff8fd988587d8925d26a83ac3845d9e03b220b37f34c2b8d6c2" checksum = "d634a985c4d4238ec39cacaed2e7ae552fbd3c476b552c1deac3021b7d7eaf0c"
dependencies = [ dependencies = [
"itoa 1.0.5", "itoa 1.0.5",
"serde", "libc",
"time-core", "num_threads",
"time-macros",
]
[[package]]
name = "time-core"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd"
[[package]]
name = "time-macros"
version = "0.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a460aeb8de6dcb0f381e1ee05f1cd56fcf5a5f6eb8187ff3d8f0b11078d38b7c"
dependencies = [
"time-core",
] ]
[[package]] [[package]]
@ -3450,7 +3443,7 @@ checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd"
[[package]] [[package]]
name = "wry" name = "wry"
version = "0.27.0" version = "0.27.0"
source = "git+https://github.com/tauri-apps/wry?branch=dev#9975dda12a122051b375ec6485650546d2d91c26" source = "git+https://github.com/tauri-apps/wry?branch=dev#7795356a45b1bd015fad0e9973fc5af58c8c339b"
dependencies = [ dependencies = [
"base64 0.13.1", "base64 0.13.1",
"block", "block",

Loading…
Cancel
Save