-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdub.json
68 lines (68 loc) · 1.57 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
62
63
64
65
66
67
68
{
"name": "ddash",
"authors": [
"Ali Akhtarzada"
],
"description": "Utility library for D",
"copyright": "Copyright © 2017, Ali Akhtarzada",
"license": "MIT",
"targetPath": "bin",
"dependencies": {
"ddash:algorithm": "*",
"ddash:functional": "*",
"ddash:range": "*",
"ddash:utils": "*",
"ddash:lang": "*"
},
"subPackages": [
"./algorithm/",
"./functional/",
"./utils/",
"./lang/",
"./range/",
"./common/"
],
"configurations": [
{
"name": "unittest",
"sourcePaths": [
"./algorithm/",
"./functional/",
"./utils/",
"./range/",
"./lang/",
"./common/"
],
"importPaths": [
"."
]
},
{
"name": "unittest-safe",
"buildType": "unittest",
"sourcePaths": [
"./algorithm/",
"./functional/",
"./utils/",
"./range/",
"./lang/",
"./common/"
],
"importPaths": [
"."
],
"dflags": ["-dip1000", "-dip25"]
},
{
"name": "benchmark",
"targetType": "executable",
"sourcePaths": [
"./benchmarks/"
],
"importPaths": [
"./",
"./benchmarks/"
]
}
]
}