-
Notifications
You must be signed in to change notification settings - Fork 105
/
Cargo.dot
55 lines (55 loc) · 1.29 KB
/
Cargo.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
digraph dependencies {
N0[label="hematite"];
N2[label="camera_controllers"];
N3[label="docopt"];
N4[label="flate2"];
N5[label="fps_counter"];
N6[label="gfx"];
N7[label="gfx_device_gl"];
N10[label="piston"];
N11[label="piston3d-gfx_voxel"];
N12[label="pistoncore-glutin_window"];
N15[label="time"];
N16[label="vecmath"];
N26[label="piston3d-cam"];
N27[label="pistoncore-input"];
N89[label="pistoncore-event_loop"];
N90[label="pistoncore-window"];
N91[label="piston-float"];
N92[label="piston-gfx_texture"];
N93[label="piston-texture"];
N94[label="piston-viewport"];
N0 -> N2[label=""];
N0 -> N3[label=""];
N0 -> N4[label=""];
N0 -> N5[label=""];
N0 -> N6[label=""];
N0 -> N7[label=""];
N0 -> N10[label=""];
N0 -> N11[label=""];
N0 -> N12[label=""];
N0 -> N15[label=""];
N0 -> N16[label=""];
N2 -> N16[label=""];
N2 -> N26[label=""];
N2 -> N27[label=""];
N5 -> N15[label=""];
N10 -> N27[label=""];
N10 -> N89[label=""];
N10 -> N90[label=""];
N11 -> N6[label=""];
N11 -> N92[label=""];
N12 -> N27[label=""];
N12 -> N90[label=""];
N16 -> N91[label=""];
N26 -> N16[label=""];
N27 -> N94[label=""];
N89 -> N15[label=""];
N89 -> N27[label=""];
N89 -> N90[label=""];
N89 -> N94[label=""];
N90 -> N27[label=""];
N92 -> N6[label=""];
N92 -> N93[label=""];
N94 -> N91[label=""];
}