From 6ee8db315e2baed812f64a90b2d1a5b95ca9d774 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Fri, 29 Nov 2024 16:04:15 +0700 Subject: [PATCH] deps: Don't use default-features on `image` This brings in a lot of image formats (and a lot of extra dependencies) that aren't needed here. This reduces the build time substantially as well. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 2596c88..468ecd6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ byteorder = "1.3.4" chrono = { version= "0.4.19", features = ["serde"] } encoding_rs = "0.8.26" enum_primitive = "0.1.1" -image = "0.25.1" +image = { version = "0.25.1", default-features = false, features = ["bmp"] } itertools = "0.13.0" num = "0.4" serde = { version = "1.0", features = ["derive"], optional = true }