Skip to content

Commit

Permalink
Merge pull request #53 from waywardmonkeys/disable-default-features-f…
Browse files Browse the repository at this point in the history
…or-image

image dep: Don't use all features.
  • Loading branch information
ChurchTao authored Nov 19, 2024
2 parents f7513e2 + 37c3868 commit 637a111
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@ edition = "2021"
rust-version = "1.67.0"

[dependencies]
image = "0.25.2"
image = { version = "0.25.4", default-features = false, features = ["png"] }

[target.'cfg(target_os = "windows")'.dependencies]
clipboard-win = { version = "5.4.0", features = ["monitor"] }
image = { version = "0.25.4", default-features = false, features = ["bmp", "png"] }

[target.'cfg(target_os = "macos")'.dependencies]
# cocoa = "0.26.0"
Expand Down

0 comments on commit 637a111

Please sign in to comment.