-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdub.json
40 lines (40 loc) · 1.14 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
{
"name": "dateparser",
"description": "Library for parsing randomly formatted date strings",
"license": "BSL-1.0",
"authors": ["Jack Stouffer"],
"dependencies": {
"emsi_containers": "~>0.8.0"
},
"configurations": [
{
"name": "library",
"targetType": "library"
},
{
"name": "unittest",
"mainSourceFile": "bench.d",
"targetType": "executable"
},
{
"name": "benchmark",
"mainSourceFile": "bench.d",
"targetType": "executable",
"dflags-ldc": ["-O5", "-singleobj", "-boundscheck=off"]
}
],
"buildTypes": {
"ddox": {
"dependencies": {
"ddox": "~>0.15.2"
},
"buildOptions": ["syntaxOnly"],
"dflags": ["-c", "-Df__dummy.html", "-Xfdocs.json"],
"postBuildCommands": [
"rm -rf docs",
"dub run ddox -- filter --min-protection=Public --ex containers docs.json",
"dub run ddox -- generate-html docs.json docs/"
]
}
}
}