diff --git a/Cargo.toml b/Cargo.toml index ff5c510..368a221 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"] } diff --git a/examples/each_frame_speed/Cargo.toml b/examples/each_frame_speed/Cargo.toml index 1b58f0e..e2048f7 100644 --- a/examples/each_frame_speed/Cargo.toml +++ b/examples/each_frame_speed/Cargo.toml @@ -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"] } diff --git a/examples/encode_all/Cargo.toml b/examples/encode_all/Cargo.toml index 04e883d..06202ff 100644 --- a/examples/encode_all/Cargo.toml +++ b/examples/encode_all/Cargo.toml @@ -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"] }