From a7db995633990220d12401345805c203a94eb1a2 Mon Sep 17 00:00:00 2001 From: me-no-dev Date: Mon, 11 Sep 2017 17:42:00 +0300 Subject: [PATCH] Use single PIO manifest Fixes: https://github.com/me-no-dev/ESPAsyncWebServer/issues/223 --- espressif32_library.json | 23 ---------------------- espressif8266_library.json => library.json | 16 ++++++++++----- 2 files changed, 11 insertions(+), 28 deletions(-) delete mode 100644 espressif32_library.json rename espressif8266_library.json => library.json (65%) diff --git a/espressif32_library.json b/espressif32_library.json deleted file mode 100644 index bd1bce8..0000000 --- a/espressif32_library.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "name":"AsyncWebServer", - "description":"Asynchronous HTTP and WebSocket Server Library for ESP8266 and ESP32", - "keywords":"http,async,websocket,webserver", - "authors": - { - "name": "Hristo Gochkov", - "maintainer": true - }, - "repository": - { - "type": "git", - "url": "https://github.com/me-no-dev/ESPAsyncWebServer.git" - }, - "version": "1.1.0", - "license": "LGPL-3.0", - "frameworks": "arduino", - "platforms":"espressif32", - "dependencies": - { - "name": "AsyncTCP" - } -} diff --git a/espressif8266_library.json b/library.json similarity index 65% rename from espressif8266_library.json rename to library.json index abf5fe1..d77ca71 100644 --- a/espressif8266_library.json +++ b/library.json @@ -15,9 +15,15 @@ "version": "1.1.0", "license": "LGPL-3.0", "frameworks": "arduino", - "platforms":"espressif", - "dependencies": - { - "name": "ESPAsyncTCP" - } + "platforms":"espressif8266, espressif32", + "dependencies": [ + { + "name": "ESPAsyncTCP", + "platforms": "espressif8266" + }, + { + "name": "AsyncTCP", + "platforms": "espressif32" + } + ] }