Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps) Update Tauri Core (1.x) - abandoned #10713

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions core/tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ tauri-runtime-wry = { version = "0.14.9", path = "../tauri-runtime-wry", optiona
rand = "0.8"
semver = { version = "1", features = [ "serde" ] }
serde_repr = "0.1"
state = "0.5" # 0.6 raised msrv
state = "0.6" # 0.6 raised msrv
tar = "0.4"
tempfile = "3"
zip = { version = "0.6", default-features = false, optional = true } # 0.7(?) raised msrv
Expand All @@ -80,20 +80,20 @@ dirs-next = "2.0"
percent-encoding = "2"
base64 = { version = "0.22", optional = true }
clap = { version = "3", optional = true } # 4.0 is too big of a change to be worth to upgrade in tauri v1
reqwest = { version = "0.11", features = [ "json", "stream" ], optional = true } # 0.12 raised msrv
reqwest = { version = "0.12", features = [ "json", "stream" ], optional = true } # 0.12 raised msrv
bytes = { version = "1", features = [ "serde" ], optional = true }
open = { version = "3", optional = true } # 4.0 raised msrv
shared_child = { version = "1.0", optional = true }
os_pipe = { version = "1", optional = true }
raw-window-handle = "0.5" # All other crates we use here are still on 0.5
raw-window-handle = "0.6" # All other crates we use here are still on 0.5
minisign-verify = { version = "0.2", optional = true }
time = { version = "0.3", features = [ "parsing", "formatting" ], optional = true }
os_info = { version = "3", optional = true }
regex = { version = "1", optional = true }
glob = "0.3"
data-url = { version = "0.3", optional = true }
serialize-to-javascript = "=0.1.2"
infer = { version = "0.13", optional = true } # 0.14 raised msrv
infer = { version = "0.16", optional = true } # 0.14 raised msrv
png = { version = "0.17", optional = true }
ico = { version = "0.3", optional = true }
encoding_rs = "0.8"
Expand All @@ -103,27 +103,27 @@ indexmap = { version = "1", features = [ "std", "serde" ], optional = true }
getrandom = { version = "0.2", features = [ "std" ] }

[target."cfg(any(target_os = \"macos\", windows, target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
rfd = { version = "0.10", optional = true, features = [ "gtk3", "common-controls-v6" ] } # 0.11 raised gtk version
rfd = { version = "0.14", optional = true, features = [ "gtk3", "common-controls-v6" ] } # 0.11 raised gtk version
notify-rust = { version = "4", optional = true }

[target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
gtk = { version = "0.15", features = [ "v3_20" ] } # Do not update without consensus
glib = "0.15" # Do not update without consensus
webkit2gtk = { version = "0.18.2", features = [ "v2_22" ] } # Do not update without consensus
nix = { version = "0.26.0", default-features = false, features = [ "user", "socket", "uio" ], optional = true } # 0.27 raised msrv
gtk = { version = "0.18", features = [ "v3_20" ] } # Do not update without consensus
glib = "0.20" # Do not update without consensus
webkit2gtk = { version = "0.19.0", features = [ "v2_22" ] } # Do not update without consensus
nix = { version = "0.29.0", default-features = false, features = [ "user", "socket", "uio" ], optional = true } # 0.27 raised msrv

[target."cfg(target_os = \"macos\")".dependencies]
embed_plist = "1.2"
cocoa = "0.24" # wry still uses 0.24
cocoa = "0.26" # wry still uses 0.24
objc = "0.2" # Do not update without consensus

[target."cfg(windows)".dependencies]
dunce = "1"
webview2-com = "0.19.1" # Do not update without consensus
webview2-com = "0.33.0" # Do not update without consensus
win7-notifications = { version = "0.4", optional = true }

[target."cfg(windows)".dependencies.windows]
version = "0.39.0" # Do not update without consensus
version = "0.58.0" # Do not update without consensus
features = [
"Win32_Foundation",
"Win32_UI_WindowsAndMessaging",
Expand All @@ -135,7 +135,7 @@ heck = "0.5"
once_cell = "1"

[dev-dependencies]
mockito = "0.31" # 0.32 raised msrv
mockito = "0.32" # 0.32 raised msrv
proptest = "1"
quickcheck = "1"
quickcheck_macros = "1"
Expand Down
Loading