-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdub.json
35 lines (35 loc) · 851 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
{
"name": "pkcs11",
"description": "Twofold (deimos/derelict) binding to PKCS #11 Cryptoki interface",
"license": "LGPL-2.1",
"copyright": "Copyright © 2017-2019, Carsten Blüggel",
"authors": ["Carsten Blüggel"],
"homepage": "https://github.com/carblue/pkcs11",
"importPaths": ["deimos"],
"configurations": [
{
"name": "deimos",
"targetType": "sourceLibrary",
"excludedSourceFiles": ["deimos/*"],
"versions" : []
},
{
"name": "derelict",
"targetType": "library",
"sourcePaths": ["deimos"],
"versions" : ["PKCS11_DYNAMIC_BINDING_ONE"],
"dependencies": {
"derelict-util": "~>3.0.0-beta.2"
}
},
{
"name": "unittest",
"targetType": "library",
"sourcePaths": ["deimos"],
"versions" : ["PKCS11_DYNAMIC_BINDING_ONE"],
"dependencies": {
"derelict-util": "~>3.0.0-beta.2"
}
}
]
}