From 36a94bebe9f34a1006e334851265b014bc600ac6 Mon Sep 17 00:00:00 2001 From: Gilles Schintgen Date: Fri, 16 Nov 2018 20:50:01 +0100 Subject: [PATCH] add missing ArduinoJson dependency in library.json --- library.json | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/library.json b/library.json index 31c713c..1ccc492 100644 --- a/library.json +++ b/library.json @@ -17,12 +17,19 @@ } ], "dependencies": - { - "name": "ESP Async WebServer", - "authors": "Hristo Gochkov", - "frameworks": "arduino" - }, + [ + { + "name": "ESP Async WebServer", + "authors": "Hristo Gochkov", + "frameworks": "arduino" + }, + { + "name": "ArduinoJson", + "authors": "Benoit Blanchon", + "frameworks": "arduino" + } + ], "version": "1.5.4", "frameworks": "arduino", "platforms": "*" -} \ No newline at end of file +}