-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdub.json
executable file
·37 lines (36 loc) · 952 Bytes
/
dub.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
{
"name": "hio",
"authors": [
"Igor Khasilev"
],
"description": "async io, task and other",
"license": "proprietary",
"targetType": "library",
"preBuildCommands": [
"cd $HIO_PACKAGE_DIR/submodules/http-parser && make package"
],
"dependencies": {
"nbuff": "~>0.1",
"timingwheels": "~>0",
"ikod-containers": "~>0"
},
"buildTypes": {
"release": {
"buildOptions": ["releaseMode", "optimize", "inline"],
"debugVersions": []
}
},
"configurations": [
{
"name": "library",
"versions": ["openssl11"]
},
{
"name": "unittest",
"versions": ["openssl11"],
"debugVersions": []
}
],
"lflags": ["-L$HIO_PACKAGE_DIR/submodules/http-parser", "-L/usr/local/opt/[email protected]/lib/"],
"libs-posix": ["cares", "http_parser", "ssl", "crypto"]
}