-
Notifications
You must be signed in to change notification settings - Fork 0
/
dub.json
58 lines (58 loc) · 1.25 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
{
"authors": [
"Ruby The Roobster"
],
"configurations": [
{
"name": "standard",
"targetType": "library"
},
{
"name": "shared",
"targetType": "dynamicLibrary",
"versions": [
"DLL"
]
}
],
"copyright": "Copyright © 2022-2023, Ruby The Roobster",
"dependencies": {
"silly": "~>1.1.1"
},
"description": "A collection of modules in the D Programming Language that people may find useful.",
"importPaths": [
"./source/dutils"
],
"license": "GPL-3.0",
"name": "dutils",
"sourceFiles": [
"./source/dutils/package.d"
],
"targetName": "dutils",
"targetPath": "lib",
"targetType": "staticLibrary",
"subPackages": [
{
"name": "math",
"configurations": [
{
"name": "standard",
"targetType": "library"
},
{
"name": "shared",
"targetType": "dynamicLibrary",
"versions": [
"DLL"
]
}
],
"importPaths": [
"./source/dutils/math"
],
"sourceFiles": [
"./source/dutils/math/package.d"
]
}
]
}