From a2e850fb72703d946aaf63605a464d94ca96411f Mon Sep 17 00:00:00 2001 From: Khoi Hoang <57012152+khoih-prog@users.noreply.github.com> Date: Wed, 25 Nov 2020 16:13:30 -0500 Subject: [PATCH] Add dependencies to library.json Add dependencies to library.json --- library.json | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/library.json b/library.json index c8690b0..494dba5 100644 --- a/library.json +++ b/library.json @@ -22,31 +22,40 @@ }, "license": "MIT", "frameworks": "arduino", - "platforms": ["*"], "dependencies": [ { + "owner": "me-no-dev", "name": "AsyncTCP", - "platforms": "espressif32" + "version": "*", + "platforms": ["espressif32"] }, { + "owner": "me-no-dev", "name": "ESP AsyncTCP", + "version": "*", "platforms": "espressif8266" }, { + "owner": "khoih-prog", "name": "ESPAsync_WiFiManager", "platforms": ["espressif8266", "espressif32"] }, { + "owner": "stm32duino", "name": "STM32duino LwIP", + "version": "^2.1.2", "platforms": "ststm32" }, { - "name": "STM32duino STM32Ethernet", + "owner": "stm32duino", + "name": "STM32Ethernet", + "version": "^1.2.0", "platforms": "ststm32" }, { - "name": "STM32 AsyncTCP", - "platforms": "ststm32" + "name": "external-repo", + "version": "https://github.com/philbowles/STM32AsyncTCP" } - ] + ], + "platforms": ["espressif8266", "espressif32", "ststm32"] }