From 8e733543cdc1c8b0ab4172f3fd2d9ef98b23dce1 Mon Sep 17 00:00:00 2001 From: Anthony Ramine Date: Wed, 16 Jan 2019 20:36:46 +0100 Subject: [PATCH] Update image to 0.21 (#758) --- CHANGELOG.md | 1 + Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e971bbf..13371a47 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ # Unreleased - Added serde serialization to `os::unix::XWindowType`. +- **Breaking:** `image` crate upgraded to 0.21. This is exposed as part of the `icon_loading` API. # Version 0.18.1 (2018-12-30) diff --git a/Cargo.toml b/Cargo.toml index 38ee3e71..a5a882eb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ icon_loading = ["image"] lazy_static = "1" libc = "0.2" log = "0.4" -image = { version = "0.20.1", optional = true } +image = { version = "0.21", optional = true } serde = { version = "1", optional = true, features = ["serde_derive"] } [target.'cfg(target_os = "android")'.dependencies.android_glue]