From 2f8c21a6a9059a44d1d6504df9eaca6994006bdb Mon Sep 17 00:00:00 2001 From: Ryan Oldenburg Date: Mon, 9 Jan 2023 23:41:35 -0600 Subject: [PATCH] use crunchy for crc32 --- pixie.nimble | 3 ++- src/pixie/fileformats/png.nim | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/pixie.nimble b/pixie.nimble index eb9b4b4..c0071c6 100644 --- a/pixie.nimble +++ b/pixie.nimble @@ -1,4 +1,4 @@ -version = "5.0.4" +version = "5.0.5" author = "Andre von Houck and Ryan Oldenburg" description = "Full-featured 2d graphics library for Nim." license = "MIT" @@ -12,6 +12,7 @@ requires "zippy >= 0.10.3" requires "flatty >= 0.3.4" requires "nimsimd >= 1.2.0" requires "bumpy >= 1.1.1" +requires "crunchy >= 0.1.0" task bindings, "Generate bindings": diff --git a/src/pixie/fileformats/png.nim b/src/pixie/fileformats/png.nim index 4bb69ad..556579f 100644 --- a/src/pixie/fileformats/png.nim +++ b/src/pixie/fileformats/png.nim @@ -1,5 +1,5 @@ import chroma, flatty/binny, math, pixie/common, pixie/images, pixie/internal, - pixie/simd, zippy, zippy/crc + pixie/simd, zippy, crunchy # See http://www.libpng.org/pub/png/spec/1.2/PNG-Contents.html