-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdub.json
55 lines (50 loc) · 1.36 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
55
{
"name": "influx-d",
"authors": [
"Atila Neves",
"Ilya Yaroshenko"
],
"dependencies": {
"requests": "~>2.0.9",
"asdf": ">=0.1.1 <0.8.0"
},
"description": "InfluxDB wrapper",
"copyright": "Copyright © 2017, Kaleidic Associates Advisory Limited",
"license": "BSD 3-clause",
"targetType": "library",
"sourcePaths": ["source"],
"configurations": [
{"name": "library" },
{
"name": "library-ssl-1.1",
"libs-posix": [
":libssl.so.1.0.0",
":libcrypto.so.1.0.0"
]
},
{
"name": "unittest",
"targetType": "executable",
"targetName": "bin/ut",
"mainSourceFile": "bin/ut.d",
"dependencies": {
"unit-threaded": "*"
},
"versions": ["unitUnthreaded", "Test_InfluxD"]
},
{
"name": "unittest-ssl-1.1",
"targetType": "executable",
"targetName": "bin/ut",
"mainSourceFile": "bin/ut.d",
"dependencies": {
"unit-threaded": "*"
},
"libs-posix": [
":libssl.so.1.0.0",
":libcrypto.so.1.0.0"
],
"versions": ["unitUnthreaded", "Test_InfluxD"]
}
]
}