This repository has been archived by the owner on Jun 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dub.json
103 lines (97 loc) · 2.89 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "linedubbed",
"description": "lineDUBbed – DUB package testing system",
"copyright": "Copyright © 2023 Elias Batek",
"license": "BSL-1.0",
"authors": [
"Elias Batek"
],
"targetPath": "bin",
"targetType": "library",
"configurations": [
{
"name":"library",
"targetType": "library",
"excludedSourceFiles": [
"source/linedubbed/controller/*",
"source/linedubbed/runner/*"
],
"dependencies": {
"linedubbed:common": "*",
"linedubbed:controller": "*",
"linedubbed:runner": "*"
}
},
{
"name":"controller",
"targetName": "linedubbed-controller",
"targetType": "executable",
"excludedSourceFiles": [
"source/linedubbed/package.d",
"source/linedubbed/runner/*"
],
"dependencies": {
"linedubbed:controller": "*"
}
},
{
"name":"runner",
"targetName": "linedubbed-runner",
"targetType": "executable",
"excludedSourceFiles": [
"source/linedubbed/controller/*",
"source/linedubbed/package.d"
],
"dependencies": {
"linedubbed:runner": "*"
}
}
],
"subPackages": [
{
"name": "common",
"description": "Common library",
"importPaths": ["common"],
"sourcePaths": ["common"],
"targetPath": "bin",
"targetType": "library",
"dependencies": {
"asdf": "~>0.7.17"
}
},
{
"name": "controller",
"description": "Central controller",
"importPaths": ["controller/"],
"sourcePaths": ["controller/"],
"targetPath": "bin",
"targetType": "library",
"dependencies": {
"linedubbed:common": "*",
"oceandrift-database:mariadb": "~>0.26.0",
"oceandrift-database:orm": "*",
"oceandrift-http:microframework": {"path": "../oceandrift/http"},
"poodinis": "~>9.0.0"
},
"libs": ["sodium"]
},
{
"name": "runner",
"description": "Test runner",
"importPaths": ["runner"],
"sourcePaths": ["runner"],
"targetPath": "bin",
"targetType": "library",
"dependencies": {
"arsd-official:http": "~>10.9.10",
"linedubbed:common": "*"
}
}
],
"buildTypes":{
"io": {
"buildOptions": ["inline", "optimize"],
"buildRequirements": ["requireBoundsCheck"]
}
}
}