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 }