-
Notifications
You must be signed in to change notification settings - Fork 66
/
dub.json
42 lines (42 loc) · 1.04 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
{
"name": "pegged",
"description": "Parsing Expression Grammar (PEG) generator",
"copyright": "Copyright © 2012-2016, Philippe Sigaud",
"license": "Boost",
"authors": [ "Philippe Sigaud" ],
"sourceFiles": [
"pegged/peg.d",
"pegged/grammar.d",
"pegged/parser.d",
"pegged/introspection.d",
"pegged/tohtml.d",
"pegged/dynamic/grammar.d",
"pegged/dynamic/peg.d",
"pegged/tester/grammartester.d",
"pegged/tester/testerparser.d"
],
"importPaths": ["."],
"dflags": ["-ignore"],
"dflags-gdc": ["-ggdb"],
"configurations": [
{
"name": "default"
},
{
"name": "tracer",
"versions": ["tracer"]
}
],
"subPackages": [
"examples/arithmetic",
"examples/c",
"examples/composition",
"examples/csv",
"examples/json",
"examples/numbers",
"examples/python",
"examples/simple_arithmetic",
"examples/strings",
"examples/xml"
]
}