Skip to content

Commit 3c11523

Browse files
renovate[bot]torokati44
authored andcommitted
fix(deps): update rust dependencies
1 parent 3f17d1c commit 3c11523

File tree

12 files changed

+209
-172
lines changed

12 files changed

+209
-172
lines changed

Cargo.lock

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

core/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ ruffle_macros = { path = "macros" }
2626
ruffle_wstr = { path = "../wstr" }
2727
swf = { path = "../swf" }
2828
bitflags = "2.4.1"
29-
smallvec = { version = "1.11.2", features = ["union"] }
29+
smallvec = { version = "1.12.0", features = ["union"] }
3030
num-traits = "0.2"
3131
num-derive = "0.4"
3232
quick-xml = "0.31.0"
@@ -49,18 +49,18 @@ dasp = { version = "0.11.0", features = ["interpolate", "interpolate-linear", "s
4949
symphonia = { version = "0.5.3", default-features = false, features = ["mp3"], optional = true }
5050
enumset = "1.1.3"
5151
bytemuck = "1.14.0"
52-
clap = { version = "4.4.13", features = ["derive"], optional=true }
52+
clap = { version = "4.4.17", features = ["derive"], optional=true }
5353
realfft = "3.3.0"
5454
hashbrown = { version = "0.14.3", features = ["raw"] }
5555
scopeguard = "1.2.0"
5656
fluent-templates = "0.8.0"
5757
egui = { workspace = true, optional = true }
5858
egui_extras = { version = "0.24.2", optional = true }
59-
png = { version = "0.17.10", optional = true }
59+
png = { version = "0.17.11", optional = true }
6060
flv-rs = { path = "../flv" }
6161
async-channel = "2.1.1"
6262
jpegxr = { git = "https://github.com/ruffle-rs/jpegxr", branch = "ruffle", optional = true }
63-
image = { version = "0.24.7", default-features = false, features = ["tiff", "dxt"] }
63+
image = { version = "0.24.8", default-features = false, features = ["tiff", "dxt"] }
6464
enum-map = "2.7.3"
6565
ttf-parser = "0.20"
6666

core/build_playerglobal/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ convert_case = "0.6.0"
1515
proc-macro2 = "1.0.76"
1616
quote = "1.0.35"
1717
swf = { path = "../../swf" }
18-
clap = {version = "4.4.13", features = ["derive"]}
18+
clap = {version = "4.4.17", features = ["derive"]}
1919
serde = {version = "1.0.195", features = ["derive"]}
2020
serde-xml-rs = "0.6.0"
2121
colored = "2.1.0"

desktop/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ version.workspace = true
1111
workspace = true
1212

1313
[dependencies]
14-
clap = { version = "4.4.13", features = ["derive"] }
14+
clap = { version = "4.4.17", features = ["derive"] }
1515
cpal = "0.15.2"
1616
egui = { workspace = true }
1717
egui_extras = { version = "0.24.2", features = ["image"] }
@@ -32,7 +32,7 @@ url = "2.5.0"
3232
arboard = { version = "3.3.0", features = ["wayland-data-control"] }
3333
dirs = "5.0"
3434
isahc = { version = "1.7.2", features = ["cookies"] }
35-
rfd = "0.12.1"
35+
rfd = "0.13.0"
3636
anyhow = "1.0"
3737
bytemuck = "1.14.0"
3838
os_info = { version = "3", default-features = false }
@@ -55,7 +55,7 @@ winapi = "0.3.9"
5555

5656
[build-dependencies]
5757
embed-resource = "2"
58-
vergen = { version = "8.2.6", features = ["build", "git", "gitcl", "cargo"] }
58+
vergen = { version = "8.2.10", features = ["build", "git", "gitcl", "cargo"] }
5959

6060
[features]
6161
default = ["software_video"]

exporter/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ version.workspace = true
1111
workspace = true
1212

1313
[dependencies]
14-
clap = { version = "4.4.13", features = ["derive"] }
14+
clap = { version = "4.4.17", features = ["derive"] }
1515
futures = "0.3"
1616
ruffle_core = { path = "../core", features = ["deterministic", "default_font"] }
1717
ruffle_render_wgpu = { path = "../render/wgpu", features = ["clap"] }
18-
image = { version = "0.24.7", default-features = false, features = ["png"] }
18+
image = { version = "0.24.8", default-features = false, features = ["png"] }
1919
log = "0.4"
2020
walkdir = "2.4.0"
2121
indicatif = "0.17"

render/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,17 @@ ruffle_wstr = { path = "../wstr" }
1515
swf = { path = "../swf"}
1616
tracing = { workspace = true }
1717
gif = "0.12.0"
18-
png = "0.17.10"
18+
png = "0.17.11"
1919
flate2 = "1.0.28"
20-
smallvec = { version = "1.11.2", features = ["union"] }
20+
smallvec = { version = "1.12.0", features = ["union"] }
2121
downcast-rs = "1.2.0"
2222
lyon = { version = "1.0.1", optional = true }
2323
lyon_geom = "1.0.5"
2424
thiserror = "1.0"
2525
wasm-bindgen = { version = "=0.2.90", optional = true }
2626
enum-map = "2.7.3"
2727
serde = { version = "1.0.195", features = ["derive"] }
28-
clap = { version = "4.4.13", features = ["derive"], optional = true }
28+
clap = { version = "4.4.17", features = ["derive"], optional = true }
2929
h263-rs-yuv = { git = "https://github.com/ruffle-rs/h263-rs", rev = "16700664e2b3334f0a930f99af86011aebee14cc"}
3030
lru = "0.12.1"
3131
num-traits = "0.2"
@@ -39,7 +39,7 @@ version = "0.11.0"
3939
optional = true
4040

4141
[dependencies.jpeg-decoder]
42-
version = "0.3.0"
42+
version = "0.3.1"
4343
default-features = false # can't use rayon on web
4444

4545
[dev-dependencies]

render/wgpu/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ tracing = { workspace = true }
1616
ruffle_render = { path = "..", features = ["tessellator", "wgpu"] }
1717
bytemuck = { version = "1.14.0", features = ["derive"] }
1818
raw-window-handle = "0.5.2"
19-
clap = { version = "4.4.13", features = ["derive"], optional = true }
19+
clap = { version = "4.4.17", features = ["derive"], optional = true }
2020
enum-map = "2.7.3"
2121
fnv = "1.0.7"
2222
swf = { path = "../../swf" }
23-
image = { version = "0.24.7", default-features = false }
23+
image = { version = "0.24.8", default-features = false }
2424
naga_oil = { workspace = true }
2525
ouroboros = "0.18.2"
2626
typed-arena = "2.0.2"

scanner/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ version.workspace = true
1111
workspace = true
1212

1313
[dependencies]
14-
clap = { version = "4.4.13", features = ["derive"] }
14+
clap = { version = "4.4.17", features = ["derive"] }
1515
ruffle_core = { path = "../core", features = ["deterministic"] }
1616
log = "0.4"
1717
walkdir = "2.4.0"

tests/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ ruffle_render_wgpu = { path = "../render/wgpu", optional = true }
2424
[dev-dependencies]
2525
ruffle_core = { path = "../core", features = ["deterministic", "timeline_debug", "avm_debug", "audio", "mp3", "default_font"] }
2626
ruffle_test_framework = { path = "framework" }
27-
libtest-mimic = "0.6.1"
27+
libtest-mimic = "0.7.0"
2828
walkdir = "2.4.0"
2929
anyhow = "1.0.79"
30-
image = { version = "0.24.7", default-features = false, features = ["png"] }
30+
image = { version = "0.24.8", default-features = false, features = ["png"] }
3131
futures = "0.3.30"
3232

3333
[[test]]

tests/framework/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ruffle_render = { path = "../../render" }
1717
ruffle_input_format = { path = "../input-format" }
1818
ruffle_socket_format = { path = "../socket-format" }
1919
ruffle_video_software = { path = "../../video/software", optional = true }
20-
image = { version = "0.24.7", default-features = false, features = ["png"] }
20+
image = { version = "0.24.8", default-features = false, features = ["png"] }
2121
regex = "1.10.2"
2222
url = "2.5.0"
2323
chrono = "0.4.31"

0 commit comments

Comments
 (0)