From 2a862a69d69abc64ddd7eefd1e1ff3d05ce3b6e4 Mon Sep 17 00:00:00 2001 From: Joscha Date: Sat, 1 Mar 2025 01:38:14 +0100 Subject: [PATCH] Disable default image features in library --- Cargo.toml | 2 +- mark-bin/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4c5790a..13dd5cc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ edition = "2024" [workspace.dependencies] clap = { version = "4.5.31", features = ["derive", "deprecated"] } -image = "0.25.5" +image = { version = "0.25.5", default-features = false } mark.path = "./mark" palette = "0.7.6" rand = { version = "0.9.0", default-features = false, features = ["small_rng"] } diff --git a/mark-bin/Cargo.toml b/mark-bin/Cargo.toml index 21d9c32..4d1d071 100644 --- a/mark-bin/Cargo.toml +++ b/mark-bin/Cargo.toml @@ -5,7 +5,7 @@ edition = { workspace = true } [dependencies] clap = { workspace = true } -image = { workspace = true } +image = { workspace = true, default-features = true } mark = { workspace = true } palette = { workspace = true }