From 1b67b2f3ff1068be19d740b49f2cbaae263e5d20 Mon Sep 17 00:00:00 2001 From: per1234 Date: Tue, 9 Aug 2022 20:25:26 -0700 Subject: [PATCH] Remove unavailable items from `depends` field of library.properties The depends field of the library.properties metadata file specifies the dependencies that should be installed along with the library by the Arduino Library Manager. This field must contain only the names of libraries that are available for installation via Library Manager. The presence of any items which are not in Library Manager causes installation of the library to fail: - Arduino IDE 1.x: "no protocol:" error - Arduino IDE 2.x: fails silently - Arduino CLI: "No valid dependencies solution found" error --- library.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library.properties b/library.properties index 5165a99..a2d70b2 100644 --- a/library.properties +++ b/library.properties @@ -8,5 +8,5 @@ paragraph=This AsyncHTTPRequest_Generic Library, supporting GET, POST, PUT, PATC category=Communication,AsyncTCP,AsyncHTTP url=https://github.com/khoih-prog/AsyncHTTPRequest_Generic architectures=* -depends=AsyncTCP, ESPAsyncTCP, ESPAsync_WiFiManager, STM32duino LwIP, STM32duino STM32Ethernet, WebServer_WT32_ETH01 +depends=ESPAsync_WiFiManager, STM32duino LwIP, STM32duino STM32Ethernet, WebServer_WT32_ETH01 includes=AsyncHTTPRequest_Generic.h,AsyncHTTPRequest_Generic.hpp