-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdub.json
More file actions
61 lines (61 loc) · 1.59 KB
/
dub.json
File metadata and controls
61 lines (61 loc) · 1.59 KB
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
59
60
61
{
"name": "alid",
"targetType": "sourceLibrary",
"description": "'cached' that stores elements of InputRanges as ForwardRanges efficiently, and other modules",
"authors": ["Ali Çehreli"],
"license": "MIT",
"sourceFiles": [
"package.d",
"blockreusable/alid/blockreusable.d",
"cached/alid/cached.d",
"circularblocks/alid/circularblocks.d",
"errornogc/alid/errornogc.d",
"test/alid/test.d"],
"importPaths": [
"blockreusable",
"cached",
"circularblocks",
"errornogc",
"test"],
"subPackages": [
{
"name": "blockreusable",
"targetType": "sourceLibrary",
"description": "Reusable block of elements that can emplace and moveEmplace",
"dependencies": {
"alid:errornogc":"*",
"alid:test":"*"
},
},
{
"name": "cached",
"targetType": "sourceLibrary",
"description": "Range algorithm to cache elements of InputRanges and present them as ForwardRanges with opIndex",
"dependencies": {
"alid:circularblocks":"*",
"alid:errornogc":"*",
"alid:test":"*"
},
},
{
"name": "circularblocks",
"targetType": "sourceLibrary",
"description": "Expanding circular buffer that uses array of blocks of memory",
"dependencies": {
"alid:blockreusable":"*",
"alid:errornogc":"*",
"alid:test":"*"
},
},
{
"name": "errornogc",
"targetType": "sourceLibrary",
"description": "Defining and throwing of Error subclasses inside @nogc code",
},
{
"name": "test",
"targetType": "sourceLibrary",
"description": "Unit test helpers",
}
]
}