-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathlibrary.json
More file actions
40 lines (40 loc) · 1.26 KB
/
library.json
File metadata and controls
40 lines (40 loc) · 1.26 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
{
"name": "microsui-lib",
"version": "0.3.4",
"description": "MicroSui Library is a lightweight C library for embedded systems to interact with the Sui Network Blockchain",
"keywords": "microsui, sui, blockchain, sui-network, walrus, cryptography, c-library",
"repository": {
"type": "git",
"url": "https://github.com/MicroSui/microsui-lib.git"
},
"authors": [
{
"name": "Gustavo Belbruno",
"email": "gustavobelbruno@gmail.com",
"url": "https://www.linkedin.com/in/gustbel/"
}
],
"license": "MIT",
"homepage": "https://www.microsui.com/",
"frameworks": "*",
"platforms": "*",
"build": {
"srcDir": "src",
"includeDir": "include",
"flags": [
"-Isrc/microsui_core/lib/monocypher"
],
"srcFilter": [
"+<*.c>",
"+<*.cpp>",
"+<microsui_core/*.c>",
"+<microsui_core/utils/*.c>",
"+<microsui_core/lib/monocypher/*.c>",
"+<microsui_core/lib/jsmn/*.c>",
"-<microsui_core/impl/http/*.c>",
"-<microsui_core/impl/http/*.cpp>",
"-<microsui_core/impl/wifi/*.c>",
"-<microsui_core/impl/wifi/*.cpp>"
]
}
}