forked from trombik/esp_wireguard
-
Notifications
You must be signed in to change notification settings - Fork 6
/
library.json
88 lines (88 loc) · 1.77 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
82
83
84
85
86
87
88
{
"name": "esp_wireguard",
"version": "0.4.2",
"description": "WireGuard implementation for ESPHome",
"keywords":[
"esphome",
"communication",
"network",
"wireguard",
"vpn"
],
"repository":{
"type": "git",
"url": "https://github.com/droscy/esp_wireguard",
"branch": "main"
},
"authors":[
{
"name": "Simone Rossetto",
"email": "[email protected]",
"url": "https://github.com/droscy",
"maintainer": true
},
{
"name": "Tomoyuki Sakurai",
"email": "[email protected]",
"url": "https://github.com/trombik"
},
{
"name": "Daniel Hope",
"email": "[email protected]",
"url": "https://github.com/smartalock"
},
{
"name": "Kenta Ida",
"email": "[email protected]"
},
{
"name": "Matthew Dempsky"
},
{
"name": "D. J. Bernstein"
}
],
"license": "BSD-3-Clause",
"platforms": [
"espressif32",
"espressif8266",
"libretiny"
],
"frameworks":[
"espidf",
"arduino"
],
"dependencies": [
{
"owner": "esphome",
"name": "libsodium",
"version": "^1.10018.1"
},
{
"owner": "droscy",
"name": "esp_mbedtls_esp8266",
"version": "^2.22300.2",
"platforms": "espressif8266",
"frameworks": "arduino"
}
],
"headers":[
"esp_wireguard.h"
],
"export":{
"include":[
"LICENSE",
"README.md",
"library.json",
"include/*",
"src/*"
]
},
"build":{
"includeDir": "include",
"srcDir": "src",
"flags": [
"-Wno-unused-result"
]
}
}