From e3911e63d43c747e594a4b2d7a6675c7db6d0853 Mon Sep 17 00:00:00 2001 From: mforsb Date: Mon, 9 Aug 2021 23:57:55 +0200 Subject: [PATCH] Reduce transitive dependencies in the image crate Neovide only needs to read .ico images so we can remove all other formats. This brings the number of dependencies from 391 to 368 on Linux. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 9b66cf4..49033b1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ lru = "0.4.3" derive-new = "0.5" rmpv = "0.4.4" rust-embed = { version = "5.2.0", features = ["debug-embed"] } -image = "0.22.3" +image = { version = "0.22.3", default-features = false, features = ["ico"] } nvim-rs = { git = "https://github.com/KillTheMule/nvim-rs", branch = "master", features = ["use_tokio"] } tokio = { version = "1.1.1", features = ["full"] } tokio-util = "0.6.7"