forked from denizzzka/dpq2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdub.json
45 lines (45 loc) · 814 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
43
44
45
{
"name": "dpq2",
"description": "Medium-level binding to the PostgreSQL database",
"homepage": "https://github.com/denizzzka/dpq2",
"license": "Boost",
"authors": [
"Denis Feklushkin", "Anton Gushcha"
],
"versions": ["Have_Int64_TimeStamp"],
"targetPath": "bin",
"dependencies": {
"derelict-pq": "~>3.0.0-alpha.2",
"vibe-d:data": ">=0.7.27 <0.9.0"
},
"targetType": "sourceLibrary",
"configurations": [
{
"name": "static",
"libs": ["pq"]
},
{
"name": "dynamic"
}
],
"subPackages": [
{
"name": "integration_tests",
"targetType": "executable",
"dependencies":
{
"dpq2": "*"
},
"sourcePath": "integration_tests"
},
{
"name": "example",
"targetType": "executable",
"dependencies":
{
"dpq2": "*"
},
"sourcePath": "example"
}
]
}