-
Notifications
You must be signed in to change notification settings - Fork 1
/
dub.json
42 lines (37 loc) · 806 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
40
41
42
{
"name": "gyred",
"description": "Gyre reference implementation.",
"homepage": "https://github.com/baioc/gyred",
"targetType": "executable",
"mainSourceFile": "source/app.d",
"dependencies": {
"betterclist": "==0.2.2"
},
"toolchainRequirements": {
"frontend": ">=2.097"
},
"buildRequirements": ["allowWarnings"],
"dflags": [
"-preview=fieldwise",
"-preview=inclusiveincontracts",
"-dip1000"
],
"configurations": [
{
"name": "application"
},
{
"name": "betterC",
"dflags": ["-betterC"],
"dflags-linux-ldc": ["-static"],
"dflags-windows-ldc": ["-static"]
},
{
"name": "unittest",
"targetName": "gyred-test-unittest"
}
],
"license": "Artistic-2.0",
"copyright": "Copyright © 2022, Gabriel B. Sant'Anna",
"authors": ["Gabriel B. Sant'Anna"]
}