forked from olehlong/jwtd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdub.json
executable file
·58 lines (58 loc) · 1.08 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
56
57
58
{
"name" : "jwtd",
"description" : "D implementation of JSON Web Token.",
"license": "MIT",
"authors": [
"Oleh Havrys",
"Sergey Buth",
"Tomáš Chaloupka",
"Lionello Lunesu"
],
"configurations": [
{
"name": "openssl",
"targetType": "library",
"dependencies" : {
"openssl": "~>1.1.4+1.0.1g"
},
"versions": ["UseOpenSSL"]
},
{
"name": "botan",
"targetType": "library",
"dependencies" : {
"botan": "~>1.12.0"
},
"versions": ["UseBotan"]
},
{
"name": "phobos",
"targetType": "library",
"versions": ["UsePhobos"]
},
{
"name": "unittest-openssl",
"mainSourceFile": "source/app.d",
"targetType": "executable",
"dependencies" : {
"openssl": "~>1.1.4+1.0.1g"
},
"versions": ["UseOpenSSL"]
},
{
"name": "unittest-botan",
"mainSourceFile": "source/app.d",
"targetType": "executable",
"dependencies" : {
"botan": "~>1.12.0"
},
"versions": ["UseBotan"]
},
{
"name": "unittest-phobos",
"mainSourceFile": "source/app.d",
"targetType": "executable",
"versions": ["UsePhobos"]
}
]
}