-
Notifications
You must be signed in to change notification settings - Fork 7
/
dub.json
37 lines (37 loc) · 914 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
{
"name": "prometheus",
"authors": [
"Andrew Benton"
],
"description": "Prometheus collectors and metrics",
"copyright": "Copyright © 2018, Andrew Benton",
"license": "MPL-2.0",
"subPackages": [
{
"name": "vibe",
"targetType": "library",
"sourcePaths": ["vibe"],
"importPaths": ["vibe"],
"dependencies": {
"prometheus": "*",
"vibe-d": ">=0.8.4"
}
}
],
"configurations": [
{
"name": "library"
},
{
"name": "unittest",
"dependencies": {
"fluent-asserts": "~>0.12.4",
"vibe-d:tls": "*"
},
"versions": ["PrometheusUnittest"],
"subConfigurations": {
"vibe-d:tls": "openssl-1.1"
}
}
]
}