Skip to content

Commit 448c61b

Browse files
authored
Update various wrapper dependencies (#5)
* Replace zip-extract with zip, update most dependencies * First attempt at updating iced-rs WIP * Works when no progress bar... * Pre 0.14 update commit * Finally 0.14 working version, yay
1 parent b08dec8 commit 448c61b

File tree

10 files changed

+3123
-1799
lines changed

10 files changed

+3123
-1799
lines changed

wrapper/Cargo.lock

Lines changed: 2672 additions & 1379 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

wrapper/Cargo.toml

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,20 @@ version = "3.1.1" # Remember to change this in the macOS properties xml, until w
44
edition = "2021"
55

66
[dependencies]
7-
iced = { version = "0.12.1", features = ["image", "tokio"] }
8-
reqwest = { version = "0.12.15", default-features = false, features = ["rustls-tls", "blocking", "json", "stream"] }
9-
serde = { version = "1.0.219", features = ["derive"] }
10-
zip-extract = { version = "0.2.1" }
7+
# Since 0.14 is not released yet, lock to current latest commit on master
8+
iced = { git = "https://github.com/iced-rs/iced", rev = "92888a3639bdfb8e4ebea91e752d25825d8d8886", features = ["image", "tokio", "advanced"] }
9+
reqwest = { version = "0.12.24", default-features = false, features = ["rustls-tls", "blocking", "json", "stream"] }
10+
serde = { version = "1.0.228", features = ["derive"] }
11+
zip = "6.0.0"
1112
open = "5.3.2"
12-
dirs = "5.0.1"
13-
log = "0.4.26"
14-
log4rs = "1.3.0"
15-
arboard = "3.4.1"
16-
zip = "2.4.2"
13+
dirs = "6.0.0"
14+
log4rs = "1.4.0"
15+
arboard = "3.6.1"
16+
log = "0.4.28"
17+
18+
# Workaround for macOS Sequoia (15.0+) objc2-foundation compatibility issue
19+
[profile.dev.package.objc2]
20+
debug-assertions = false
1721

1822
[target.'cfg(windows)'.dependencies]
1923
winreg = "0.55.0"
@@ -24,4 +28,4 @@ strip = true
2428
lto = true
2529

2630
[build-dependencies]
27-
winresource = "0.1.20"
31+
winresource = "0.1.23"

0 commit comments

Comments
 (0)