summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2023-09-20 23:38:34 -0400
committerpommicket <pommicket@gmail.com>2023-09-20 23:38:34 -0400
commit521a88b66f0bd76c52fef0d84776478c0b0664d9 (patch)
tree0df450d897f6e3ab422f83b8a0ef54d769d023cf /Cargo.toml
parentbac500bc1289d9bf2c61173bd170bc721406087a (diff)
- add overflow check for chunk length.HEAD0.1.1trunk
this could have resulted in debug-only panics for maliciously crafted images. - add “impossible compressed size” check which slightly mitigates the problem of a malicious image causing you to allocate a shitton of memory.
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 40ad49e..0a0916c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -6,7 +6,7 @@ categories = ["encoding", "graphics", "multimedia::images", "no-std::no-alloc"]
keywords = ["png", "decoder", "image", "no_std", "no_alloc"]
exclude = ["/test/large", "/benches/large.png"]
license = "0BSD"
-version = "0.1.0"
+version = "0.1.1"
edition = "2021"
[dev-dependencies]