This repository has been archived by the owner on Feb 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
library.json
81 lines (81 loc) · 2.46 KB
/
library.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name":"AsyncHTTPSRequest_Generic",
"version": "2.5.0",
"description":"Simple Async HTTPS Request library, supporting GET, POST, PUT, PATCH, DELETE and HEAD, on top of AsyncTCP_SSL library for ESP32 (including ESP32_S2, ESP32_S3 and ESP32_C3), WT32_ETH01 (ESP32 + LAN8720) and ESP32 with LwIP ENC28J60, W5500 or W6100. Supporting in the future for RP2040W, ESP8266, Portenta_H7, STM32 with built-in LAN8742A Ethernet, etc. Now you can send HTTP / HTTPS requests to multiple addresses and receive responses from them.",
"keywords":"communication, async, tcp, https, ssl, tls, ESP8266, ESP32, ESP32-S2, wt32-eth01, ESPAsyncTCP, AsyncTCP, stm32, ethernet, wifi, lan8742a, lan8720, f407ve, nucleo-144, stm32f7",
"authors": [
{
"name": "Bob Lemaire",
"url": "https://github.com/boblemaire"
},
{
"name": "Khoi Hoang",
"url": "https://github.com/khoih-prog",
"email": "[email protected]",
"maintainer": true
}
],
"repository":
{
"type": "git",
"url": "https://github.com/khoih-prog/AsyncHTTPSRequest_Generic"
},
"homepage": "https://github.com/khoih-prog/AsyncHTTPSRequest_Generic",
"export": {
"exclude": [
"linux",
"extras",
"tests"
]
},
"dependencies":
[
{
"owner": "khoih-prog",
"name": "AsyncTCP_SSL",
"version": ">=1.3.1",
"platforms": ["espressif32"]
},
{
"owner": "khoih-prog",
"name": "WebServer_WT32_ETH01",
"version": ">=1.5.1",
"platforms": ["espressif32"]
},
{
"owner": "khoih-prog",
"name": "WebServer_ESP32_ENC",
"version": ">=1.5.3",
"platforms": ["espressif32"]
},
{
"owner": "khoih-prog",
"name": "WebServer_ESP32_W5500",
"version": ">=1.5.3",
"platforms": ["espressif32"]
},
{
"owner": "khoih-prog",
"name": "WebServer_ESP32_W6100",
"version": ">=1.5.3",
"platforms": ["espressif32"]
},
{
"owner": "khoih-prog",
"name": "AsyncHTTPRequest_Generic",
"version": ">=1.12.0",
"platforms": ["espressif8266", "espressif32"]
},
{
"owner": "khoih-prog",
"name": "ESPAsync_WiFiManager",
"version": ">=1.15.1",
"platforms": ["espressif8266", "espressif32"]
}
],
"license": "LGPL-3.0",
"frameworks": "arduino",
"platforms": ["espressif32"],
"examples": "examples/*/*/*.ino",
"headers": ["AsyncHTTPSRequest_Generic.h","AsyncHTTPSRequest_Generic.hpp"]
}