From 00eef45c701affa5a79908f5a2a3bde3e4ca21ee Mon Sep 17 00:00:00 2001 From: Michael Aaron Murphy Date: Fri, 15 Mar 2024 15:21:56 +0100 Subject: [PATCH] chore(cargo): update image crate and unset default features --- Cargo.lock | 17 ++++++++++++++--- cosmic-applet-minimize/Cargo.toml | 2 +- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index dac09b12..88055f96 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -961,7 +961,7 @@ dependencies = [ "anyhow", "i18n-embed", "i18n-embed-fl", - "image", + "image 0.25.0", "libcosmic", "memmap2 0.9.4", "once_cell", @@ -2712,7 +2712,7 @@ dependencies = [ "iced_renderer", "iced_sctk", "iced_widget", - "image", + "image 0.24.9", "thiserror", ] @@ -2770,7 +2770,7 @@ dependencies = [ "half", "iced_core", "iced_futures", - "image", + "image 0.24.9", "kamadak-exif", "log", "lyon_path", @@ -2928,6 +2928,17 @@ dependencies = [ "tiff", ] +[[package]] +name = "image" +version = "0.25.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9b4f005360d32e9325029b38ba47ebd7a56f3316df09249368939562d518645" +dependencies = [ + "bytemuck", + "byteorder", + "num-traits", +] + [[package]] name = "imagesize" version = "0.12.0" diff --git a/cosmic-applet-minimize/Cargo.toml b/cosmic-applet-minimize/Cargo.toml index c38dd8c9..c25dbb3d 100644 --- a/cosmic-applet-minimize/Cargo.toml +++ b/cosmic-applet-minimize/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" anyhow.workspace = true i18n-embed-fl.workspace = true i18n-embed.workspace = true -image = "0.24" +image = { version = "0.25.0", default-features = false } libcosmic.workspace = true memmap2 = "0.9.4" once_cell = "1"