diff --git a/core/tauri/Cargo.toml b/core/tauri/Cargo.toml index 9eb70daf417..67ee306ae17 100644 --- a/core/tauri/Cargo.toml +++ b/core/tauri/Cargo.toml @@ -43,7 +43,7 @@ serde = { version = "1.0", features = [ "derive" ] } tokio = { version = "1", features = [ "rt", "rt-multi-thread", "sync", "fs", "io-util" ] } futures-util = "0.3" uuid = { version = "1", features = [ "v4" ] } -url = { version = "2.3" } +url = { version = "2.4" } anyhow = "1.0" thiserror = "1.0" once_cell = "1" @@ -58,32 +58,32 @@ state = "0.6" tempfile = "3" http = "0.2" dirs-next = "2.0" -percent-encoding = "2.2" +percent-encoding = "2.3" reqwest = { version = "0.11", default-features = false, features = [ "json", "stream" ] } bytes = { version = "1", features = [ "serde" ] } raw-window-handle = "0.5" glob = "0.3" -data-url = { version = "0.2", optional = true } +data-url = { version = "0.3", optional = true } serialize-to-javascript = "=0.1.1" -infer = { version = "0.9", optional = true } +infer = { version = "0.13", optional = true } png = { version = "0.17", optional = true } -ico = { version = "0.2.0", optional = true } +ico = { version = "0.3.0", optional = true } [target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies] -gtk = { version = "0.16", features = [ "v3_24" ] } -glib = "0.16" -webkit2gtk = { version = "0.19.1", features = [ "v2_38" ] } +gtk = { version = "0.17", features = [ "v3_24" ] } +glib = "0.17" +webkit2gtk = { version = "0.19.2", features = [ "v2_38" ] } [target."cfg(target_os = \"macos\")".dependencies] embed_plist = "1.2" -cocoa = "0.24" +cocoa = "0.25" objc = "0.2" [target."cfg(windows)".dependencies] -webview2-com = "0.22" +webview2-com = "0.25" [target."cfg(windows)".dependencies.windows] - version = "0.44" + version = "0.48" features = [ "Win32_Foundation" ] [target."cfg(any(target_os = \"android\", target_os = \"ios\"))".dependencies] @@ -91,13 +91,13 @@ log = "0.4" heck = "0.4" [target."cfg(target_os = \"android\")".dependencies] -jni = "0.20" +jni = "0.21" [target."cfg(target_os = \"ios\")".dependencies] libc = "0.2" objc = "0.2" -cocoa = "0.24" -swift-rs = "1.0.4" +cocoa = "0.25" +swift-rs = "1.0.5" [build-dependencies] heck = "0.4" @@ -105,7 +105,7 @@ once_cell = "1" tauri-build = { path = "../tauri-build/", version = "2.0.0-alpha.1" } [dev-dependencies] -proptest = "1.0.0" +proptest = "1.2.0" quickcheck = "1.0.3" quickcheck_macros = "1.0.0" serde = { version = "1.0", features = [ "derive" ] }