-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
dub.json
61 lines (61 loc) · 1.21 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "serve-d",
"description": "Microsoft Language Server Protocol library and D Server",
"license": "MIT",
"copyright": "Copyright © 2017-2023, webfreak",
"dflags": ["-lowmem"],
"dependencies": {
"libddoc": "0.8.0",
"rm-rf": "~>0.1.0",
"diet-complete": "~>0.0.3",
"emsi_containers": "0.9.0",
"serve-d:http": "*",
"serve-d:lsp": "*",
"serve-d:serverbase": "*",
"serve-d:workspace-d": "*",
"fuzzymatch": "~>1.0.0",
"sdlfmt": "~>0.1.1"
},
"stringImportPaths": [
"views"
],
"subPackages": [
"http",
"protocol",
"lsp",
"serverbase",
"dcd",
"workspace-d"
],
"versions-windows": ["RequestsSkipSSL"],
"configurations": [
{
"name": "executable",
"mainSourceFile": "source/app.d",
"targetType": "executable"
},
{
"name": "unittest",
"mainSourceFile": "source/app.d",
"excludedSourceFiles": [
"source/app.d",
"source/served/info.d"
],
"dependencies": {
"silly": "~>1.1.1"
}
},
{
"name": "unittest-optimized",
"buildOptions": ["optimize", "debugInfo", "unittests"],
"mainSourceFile": "source/app.d",
"excludedSourceFiles": [
"source/app.d",
"source/served/info.d"
],
"dependencies": {
"silly": "~>1.1.1"
}
}
]
}