forked from ArkEcosystemArchive/cpp-crypto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibrary.json
53 lines (53 loc) · 1023 Bytes
/
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
{
"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": "0.3.0",
"authors": [
{
"name": "Ark Ecosystem",
"email": "[email protected]",
"url": "https://github.com/ArkEcosystem"
}
],
"frameworks": "arduino",
"platforms": "*",
"dependencies": [
{
"name": "micro-ecc"
},
{
"name": "bip39"
},
{
"name": "ArduinoJson"
}
],
"export": {
"include": [
"src/*",
"examples/*",
"docs/*",
"extras/*",
"*.md",
"*.json",
"*.properties",
"LICENSE",
"*.ini",
"keywords.txt"
],
"exclude": [
"*/*.txt"
]
},
"build": {
"flags": [
"-I src/include/cpp-crypto"
]
}
}