-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathlibrary.json
More file actions
60 lines (60 loc) · 1.12 KB
/
library.json
File metadata and controls
60 lines (60 loc) · 1.12 KB
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
{
"name": "Ark-Cpp-Crypto",
"keywords": "ark ecosystem, crypto, blockchain, iot, arduino",
"description": "A simple Cryptography Implementation in C++ for the ARK Blockchain.",
"homepage": "https://github.com/ArkEcosystem/Cpp-Crypto",
"repository": {
"type": "git",
"url": "https://github.com/ArkEcosystem/Cpp-Crypto.git"
},
"version": "1.1.0",
"authors": [
{
"name": "Ark Ecosystem",
"email": "info@ark.io",
"url": "https://github.com/ArkEcosystem"
}
],
"frameworks": "arduino",
"platforms": [
"espressif8266",
"espressif32"
],
"dependencies": [
{
"name": "ArduinoJson@6.12.0"
},
{
"name": "bcl@0.0.5"
},
{
"name": "BIP66@0.3.2"
},
{
"name": "micro-ecc@1.0.0"
}
],
"export": {
"include": [
"src/*",
"examples/*",
"docs/*",
"extras/*",
"*.md",
"*.json",
"*.properties",
"LICENSE",
"*.ini",
"keywords.txt"
],
"exclude": [
"*/*.txt"
]
},
"build": {
"flags": [
"-I src/include/cpp-crypto",
"-I src/lib"
]
}
}