This repository has been archived by the owner on Jan 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
library.json
56 lines (56 loc) · 1.66 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
{
"name":"AsyncWebServer_STM32",
"version": "1.6.1",
"keywords":"http, async, websocket, webserver, async-webserver, async-tcp, async-udp, async-websocket, async-http, ssl, tls, stm32, stm32f, stm32l, stm32h, stm32g, stm32wb, stm32mp1, ethernet, lan8742a, lan8720, bluepill, blackpill, f407ve, f767zi, nucleo, nucleo-144",
"description":"Asynchronous HTTP and WebSocket Server Library for STM32F/L/H/G/WB/MP1 using LAN8720 or built-in LAN8742A Ethernet. Now support using CString to save heap to send very large data and examples to demo how to use beginChunkedResponse() to send large html in chunks",
"authors":
[
{
"name": "Hristo Gochkov",
"url": "https://github.com/me-no-dev"
},
{
"name": "Khoi Hoang",
"url": "https://github.com/khoih-prog",
"email": "khoih.prog@gmail.com",
"maintainer": true
}
],
"repository":
{
"type": "git",
"url": "https://github.com/khoih-prog/AsyncWebServer_STM32"
},
"homepage": "https://github.com/khoih-prog/AsyncWebServer_STM32",
"export": {
"exclude": [
"linux",
"extras",
"tests"
]
},
"dependencies":
[
{
"owner": "stm32duino",
"name": "STM32duino LwIP",
"version": "^2.1.2",
"platforms": "ststm32"
},
{
"owner": "stm32duino",
"name": "STM32Ethernet",
"version": "^1.3.0",
"platforms": "ststm32"
},
{
"name": "STM32AsyncTCP",
"version": "https://github.com/khoih-prog/STM32AsyncTCP"
}
],
"license": "LGPL-3.0",
"frameworks": "arduino",
"platforms": ["ststm32"],
"examples": "examples/*/*/*.ino",
"headers": ["AsyncWebServer_STM32.h"]
}