-
Notifications
You must be signed in to change notification settings - Fork 1
/
dub.json
54 lines (53 loc) · 1.37 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
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "azured",
"description": "AzureD is a D implementation of the Azure REST API.",
"copyright": "Copyright © 2015-2016",
"authors": ["Adam Wilson", "Samuel Sellars"],
"license": "BSL-1.0",
"targetType": "library",
"dependencies": {
"vibe-d": "~>0.7.28",
":documentdb": "*",
":keyvault": "*",
":storage": "*"
},
"subPackages": [
{
"name": "documentdb",
"description": "Azure DocumentDB Client API",
"targetType": "library",
"sourcePaths": ["source/azured/documentdb"],
"dependencies": {
"openssl": "~>1.1.4+1.0.1g"
}
},
{
"name": "keyvault",
"description": "Azure KeyVault Client API",
"targetType": "library",
"sourcePaths": ["source/azured/keyvault"]
},
{
"name": "storage",
"description": "Azure Storage Client API",
"targetType": "library",
"sourcePaths": ["source/azured/storage"]
},
{
"name": "unittest",
"targetType": "executable",
"targetPath" : "tests",
"buildOptions": ["unittests"],
"excludedSourceFiles": ["source/app.d"],
"mainSourceFile": "tests/tests.d",
"versions": ["VibeCustomMain"],
"sourcePaths": ["./tests/"],
"importPaths": ["./tests/"],
"dependencies": {
"vibe-d:http": "~>0.7.28",
"openssl": "~>1.1.4+1.0.1g",
"dunit": ">=1.0.9"
}
}
]
}