Skip to content

Commit

Permalink
Disable default features for image dependency (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
frozolotl authored Sep 13, 2023
1 parent d92a913 commit ae6d31e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ required-features = ["cli"]
miniz_oxide = "0.7"
pdf-writer = "0.8"
usvg = { version = "0.35", default-features = false }
image = { version = "0.24", features = ["jpeg", "png", "gif"], optional = true }
image = { version = "0.24", default-features = false, features = ["jpeg", "png", "gif"], optional = true }
termcolor = { version = "1", optional = true }
clap = { version = "4.4.2", features = ["derive"], optional = true }
fontdb = { version = "0.14", optional= true }
Expand Down

0 comments on commit ae6d31e

Please sign in to comment.