From 425b5f1ce2b0ff92af01d5c5a13d9ded9647c0d6 Mon Sep 17 00:00:00 2001 From: Tim O'Brien Date: Fri, 22 May 2026 01:39:03 -0700 Subject: [PATCH] adds library.json, needed by platformio for native testing --- library.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 library.json diff --git a/library.json b/library.json new file mode 100644 index 0000000..b6c3e50 --- /dev/null +++ b/library.json @@ -0,0 +1,24 @@ +{ + "name": "PNGdec", + "version": "1.1.6", + "description": "Designed to provide a fully functional PNG decoder that can use minimal memory by decoding a line at a time with an optional callback function. Supports all pixel formats.", + "keywords": "image, png", + "repository": { + "type": "git", + "url": "https://github.com/bitbank2/PNGdec" + }, + "frameworks": "*", + "platforms": [ + "espressif32", + "espressif8266", + "native" + ], + "license": "Apache-2.0", + "build": { + "srcFilter": [ + "+<*.h>", + "+<*.c>", + "+<*.cpp>" + ] + } +} \ No newline at end of file