From 7f0b0cb14ba27518326d9007f21c9d1a839cdfa4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 11 Mar 2024 01:17:10 +0000 Subject: [PATCH] fix(deps): update rust dependencies --- core/Cargo.toml | 2 +- desktop/Cargo.toml | 4 ++-- exporter/Cargo.toml | 2 +- render/wgpu/Cargo.toml | 2 +- tests/Cargo.toml | 2 +- tests/framework/Cargo.toml | 4 ++-- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/core/Cargo.toml b/core/Cargo.toml index 2f56552bd8556..7d6283605eef8 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -60,7 +60,7 @@ png = { version = "0.17.13", optional = true } flv-rs = { path = "../flv" } async-channel = "2.2.0" jpegxr = { git = "https://github.com/ruffle-rs/jpegxr", branch = "ruffle", optional = true } -image = { version = "0.24.9", default-features = false, features = ["tiff", "dxt"] } +image = { version = "0.25.0", default-features = false, features = ["tiff", "dxt"] } enum-map = "2.7.3" ttf-parser = "0.20" num-bigint = "0.4" diff --git a/desktop/Cargo.toml b/desktop/Cargo.toml index 0c81fbcea3f75..e1a570c288299 100644 --- a/desktop/Cargo.toml +++ b/desktop/Cargo.toml @@ -16,7 +16,7 @@ cpal = "0.15.3" egui = { workspace = true } egui_extras = { version = "0.26.2", features = ["image"] } egui-wgpu = { version = "0.26.2", features = ["winit"] } -image = { version = "0.24", features = ["png"] } +image = { version = "0.25", features = ["png"] } egui-winit = "0.26.2" fontdb = "0.16" ruffle_core = { path = "../core", features = ["audio", "clap", "mp3", "nellymoser", "default_compatibility_rules", "egui"] } @@ -43,7 +43,7 @@ futures = "0.3.30" chrono = { version = "0.4", default-features = false, features = [] } fluent-templates = "0.9.0" futures-lite = "2.2.0" -async-io = "2.3.1" +async-io = "2.3.2" async-net = "2.0.0" async-channel = "2.2.0" toml_edit = { version = "0.22.6", features = ["parse"] } diff --git a/exporter/Cargo.toml b/exporter/Cargo.toml index 4847b04bb3b34..62dd634418fa4 100644 --- a/exporter/Cargo.toml +++ b/exporter/Cargo.toml @@ -15,7 +15,7 @@ clap = { workspace = true } futures = "0.3" ruffle_core = { path = "../core", features = ["deterministic", "default_font"] } ruffle_render_wgpu = { path = "../render/wgpu", features = ["clap"] } -image = { version = "0.24.9", default-features = false, features = ["png"] } +image = { version = "0.25.0", default-features = false, features = ["png"] } log = "0.4" walkdir = "2.5.0" indicatif = "0.17" diff --git a/render/wgpu/Cargo.toml b/render/wgpu/Cargo.toml index fe9b0d3413772..92186eded3d7f 100644 --- a/render/wgpu/Cargo.toml +++ b/render/wgpu/Cargo.toml @@ -20,7 +20,7 @@ clap = { version = "4.5.2", features = ["derive"], optional = true } enum-map = "2.7.3" fnv = "1.0.7" swf = { path = "../../swf" } -image = { version = "0.24.9", default-features = false } +image = { version = "0.25.0", default-features = false } naga_oil = { workspace = true } naga-agal = { path = "../naga-agal" } naga-pixelbender = { path = "../naga-pixelbender" } diff --git a/tests/Cargo.toml b/tests/Cargo.toml index e46b589f5d16d..6ad4f64e63fc9 100644 --- a/tests/Cargo.toml +++ b/tests/Cargo.toml @@ -27,7 +27,7 @@ ruffle_test_framework = { path = "framework" } libtest-mimic = "0.7.0" walkdir = "2.5.0" anyhow = "1.0.80" -image = { version = "0.24.9", default-features = false, features = ["png"] } +image = { version = "0.25.0", default-features = false, features = ["png"] } futures = "0.3.30" env_logger = "0.11.3" tracing = { workspace = true } diff --git a/tests/framework/Cargo.toml b/tests/framework/Cargo.toml index b3c8a18a0307e..4ae8c5e1f655b 100644 --- a/tests/framework/Cargo.toml +++ b/tests/framework/Cargo.toml @@ -17,7 +17,7 @@ ruffle_render = { path = "../../render" } ruffle_input_format = { path = "../input-format" } ruffle_socket_format = { path = "../socket-format" } ruffle_video_software = { path = "../../video/software", optional = true } -image = { version = "0.24.9", default-features = false, features = ["png"] } +image = { version = "0.25.0", default-features = false, features = ["png"] } regex = "1.10.3" url = "2.5.0" chrono = "0.4.35" @@ -27,7 +27,7 @@ serde = "1.0.197" toml = "0.8.10" anyhow = "1.0.80" async-channel = "2.2.0" -vfs = "0.11.0" +vfs = "0.12.0" percent-encoding = "2.3.1" [features]