From b679d57783053fe28d852432653ff674a4facc78 Mon Sep 17 00:00:00 2001 From: G2-Games Date: Mon, 2 Jun 2025 15:14:31 -0500 Subject: [PATCH] Removed unnecessary image formats to reduce binary size --- sqp_tools/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqp_tools/Cargo.toml b/sqp_tools/Cargo.toml index f163345..246863f 100644 --- a/sqp_tools/Cargo.toml +++ b/sqp_tools/Cargo.toml @@ -7,7 +7,7 @@ authors.workspace = true [dependencies] anyhow = "1.0" clap = { version = "4.5", features = ["derive"] } -image = "0.25" +image = { version = "0.25", default-features = false, features = ["bmp", "gif", "ico", "jpeg", "png", "pnm", "qoi", "rayon", "tga", "tiff", "webp"] } sqp = { path = "../sqp" } text_io = "0.1"