-
Notifications
You must be signed in to change notification settings - Fork 2
/
deps.dot
69 lines (69 loc) · 1.78 KB
/
deps.dot
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
62
63
64
65
66
67
68
69
digraph {
{
"app"
"core.bitop"
"core.checkedint"
"core.exception"
"core.internal.traits"
"core.memory"
"core.stdc.string"
"std.algorithm"
"std.algorithm.comparison"
"std.algorithm.iteration"
"std.algorithm.mutation"
"std.algorithm.searching"
"std.array"
"std.ascii"
"std.container.rbtree"
"std.conv"
"std.encoding"
"std.exception"
"std.file"
"std.format"
"std.functional"
"std.getopt"
"std.internal.memory"
"std.internal.unicode_tables"
"std.meta"
"std.range"
"std.range.primitives"
"std.stdio"
"std.system"
"std.traits"
"std.typecons"
"std.uni"
"std.utf"
}
"app" -> "core.bitop";
"app" -> "core.checkedint";
"app" -> "core.exception";
"app" -> "core.internal.traits";
"app" -> "core.memory";
"app" -> "core.stdc.string";
"app" -> "std.algorithm";
"app" -> "std.algorithm.comparison";
"app" -> "std.algorithm.iteration";
"app" -> "std.algorithm.mutation";
"app" -> "std.algorithm.searching";
"app" -> "std.array";
"app" -> "std.ascii";
"app" -> "std.container.rbtree";
"app" -> "std.conv";
"app" -> "std.encoding";
"app" -> "std.exception";
"app" -> "std.file";
"app" -> "std.format";
"app" -> "std.functional";
"app" -> "std.getopt";
"app" -> "std.internal.memory";
"app" -> "std.internal.unicode_tables";
"app" -> "std.meta";
"app" -> "std.range";
"app" -> "std.range.primitives";
"app" -> "std.stdio";
"app" -> "std.system";
"app" -> "std.traits";
"app" -> "std.typecons";
"app" -> "std.uni";
"app" -> "std.utf";
}