forked from huntlabs/collie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dub.json
40 lines (40 loc) · 923 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
38
39
40
{
"name": "collie",
"description": "An asynchronous event-driven network framework written in D.",
"copyright": "Copyright (C) 2015-2016 Shanghai Putao Technology Co., Ltd",
"authors": [
"putao.com dlang team."
],
"license": "Apache-2.0",
"buildTypes": {
"debug": {
"buildOptions": [
"debugMode",
"debugInfo"
]
},
"release": {
"buildOptions": [
"releaseMode",
"inline",
"optimize"
]
}
},
"configurations": [
{
"name": "default"
},
{
"name": "ssl",
"versions": [
"USE_SSL"
],
"dependencies": {
"openssl": {
"version": "~>1.1.4+1.0.1g"
}
}
}
]
}