Skip to content

Commit

Permalink
Update dependencies and only include png support (#33)
Browse files Browse the repository at this point in the history
* Update dependencies, only include png support

* Bump the image version for examples

---------

Co-authored-by: Orhun Parmaksız <[email protected]>
  • Loading branch information
phoekz and orhun authored Feb 21, 2023
1 parent d785962 commit ce287ef
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ readme = "README.md"

[dependencies]
png = "0.17.7"
thiserror = "1.0.29"
byteorder = "1.3.4"
flate2 = "1.0.22"
image = "0.24.3"
thiserror = "1.0.38"
byteorder = "1.4.3"
flate2 = "1.0.25"
image = { version = "0.24.5", default-features = false, features = ["png"] }
2 changes: 1 addition & 1 deletion examples/each_frame_speed/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ edition = "2021"
[dependencies]
apng = { path = "../../" }
png = "0.17.7"
image = "0.24.3"
image = { version = "0.24.5", default-features = false, features = ["png"] }
2 changes: 1 addition & 1 deletion examples/encode_all/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ edition = "2021"
[dependencies]
apng = { path = "../../" }
png = "0.17.7"
image = "0.24.3"
image = { version = "0.24.5", default-features = false, features = ["png"] }

0 comments on commit ce287ef

Please sign in to comment.