Skip to content

Commit

Permalink
deps: Don't use default-features on image
Browse files Browse the repository at this point in the history
This brings in a lot of image formats (and a lot of extra dependencies)
that aren't needed here.

This reduces the build time substantially as well.
  • Loading branch information
waywardmonkeys committed Nov 29, 2024
1 parent eaa9249 commit 6ee8db3
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 @@ -22,7 +22,7 @@ byteorder = "1.3.4"
chrono = { version= "0.4.19", features = ["serde"] }
encoding_rs = "0.8.26"
enum_primitive = "0.1.1"
image = "0.25.1"
image = { version = "0.25.1", default-features = false, features = ["bmp"] }
itertools = "0.13.0"
num = "0.4"
serde = { version = "1.0", features = ["derive"], optional = true }
Expand Down

0 comments on commit 6ee8db3

Please sign in to comment.