-
Notifications
You must be signed in to change notification settings - Fork 0
/
dub.json
39 lines (39 loc) · 966 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
{
"name": "fsical-management",
"authors": [
"Johannes Loher",
"Oliver Rümpelein"
],
"dependencies": {
"dauth": "~>0.6.3",
"mysql-native": "~>2.2.2",
"vibe-d": "~>0.8.4",
"vibe-d:tls": "~>0.8.4",
"poodinis": "~>8.0.3"
},
"subConfigurations": {
"vibe-d:tls": "openssl-1.1"
},
"description": "A tool to manage the calendar of the Fachschaft Mathe/Physik Uni Regensburg ",
"copyright": "Copyright © 2018, Johannes Loher",
"license": "MIT",
"targetType": "executable",
"targetPath": "generated",
"configurations": [
{
"name": "executable"
},
{
"name": "unittest",
"targetType": "executable",
"preBuildCommands": ["dub run unit-threaded -c gen_ut_main -- -f generated/ut.d test"],
"mainSourceFile": "generated/ut.d",
"excludedSourceFiles": ["source/fsicalmanagement/app.d"],
"sourcePaths": ["test"],
"dependencies": {
"unit-threaded": "~>0.7.46"
},
"versions": ["unitUnthreaded"]
}
]
}