From c4b0a0f414f04fa5b58185ab3a0a2d11de86577d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 28 Feb 2022 14:17:30 +0000 Subject: [PATCH] build(deps): bump png from 0.17.3 to 0.17.4 Bumps [png](https://github.com/image-rs/image-png) from 0.17.3 to 0.17.4. - [Release notes](https://github.com/image-rs/image-png/releases) - [Changelog](https://github.com/image-rs/image-png/blob/master/CHANGES.md) - [Commits](https://github.com/image-rs/image-png/commits) --- updated-dependencies: - dependency-name: png dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- core/Cargo.toml | 2 +- render/canvas/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ea2c84de33a65..6f6813e68a11d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2614,9 +2614,9 @@ dependencies = [ [[package]] name = "png" -version = "0.17.3" +version = "0.17.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e8f1882177b17c98ec33a51f5910ecbf4db92ca0def706781a1f8d0c661f393" +checksum = "02cd7d51cea7e2fa6bbcb8af5fbcad15b871451bfc2d20ed72dff2f4ae072a84" dependencies = [ "bitflags", "crc32fast", @@ -2923,7 +2923,7 @@ dependencies = [ "num-derive", "num-traits", "percent-encoding", - "png 0.17.3", + "png 0.17.4", "quick-xml", "rand", "regress", @@ -2977,7 +2977,7 @@ dependencies = [ "js-sys", "log", "percent-encoding", - "png 0.17.3", + "png 0.17.4", "ruffle_core", "ruffle_web_common", "svg", diff --git a/core/Cargo.toml b/core/Cargo.toml index 8d723e75b71e2..fa028814f8f88 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -16,7 +16,7 @@ gif = "0.11.3" indexmap = "1.8.0" log = "0.4" minimp3 = { version = "0.5.1", optional = true } -png = { version = "0.17.3" } +png = { version = "0.17.4" } ruffle_macros = { path = "macros" } swf = { path = "../swf" } bitflags = "1.3.2" diff --git a/render/canvas/Cargo.toml b/render/canvas/Cargo.toml index 10ff67d3777b7..64a3ac87873c5 100644 --- a/render/canvas/Cargo.toml +++ b/render/canvas/Cargo.toml @@ -16,7 +16,7 @@ log = "0.4" ruffle_web_common = { path = "../../web/common" } svg = "0.10.0" percent-encoding = "2.1.0" -png = "0.17.3" +png = "0.17.4" wasm-bindgen = "=0.2.78" [dependencies.jpeg-decoder]