Disable default image features in library
This commit is contained in:
parent
58db14851e
commit
2a862a69d6
2 changed files with 2 additions and 2 deletions
|
|
@ -8,7 +8,7 @@ edition = "2024"
|
||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
clap = { version = "4.5.31", features = ["derive", "deprecated"] }
|
clap = { version = "4.5.31", features = ["derive", "deprecated"] }
|
||||||
image = "0.25.5"
|
image = { version = "0.25.5", default-features = false }
|
||||||
mark.path = "./mark"
|
mark.path = "./mark"
|
||||||
palette = "0.7.6"
|
palette = "0.7.6"
|
||||||
rand = { version = "0.9.0", default-features = false, features = ["small_rng"] }
|
rand = { version = "0.9.0", default-features = false, features = ["small_rng"] }
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ edition = { workspace = true }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
clap = { workspace = true }
|
clap = { workspace = true }
|
||||||
image = { workspace = true }
|
image = { workspace = true, default-features = true }
|
||||||
mark = { workspace = true }
|
mark = { workspace = true }
|
||||||
palette = { workspace = true }
|
palette = { workspace = true }
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue