-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathKnowledge.dot
9002 lines (7820 loc) · 408 KB
/
Knowledge.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
digraph G {
newrank=true;
rankdir=LR;
splines=ortho;
overlap=false;
nodesep=0.5;
ranksep=0.5;
concentrate=true;
graph [bgcolor="#f9f9f9", color="#888888", penwidth=2, fontname="Arial"];
node [fontname="Arial", fontsize=14, style=filled, margin="0.3,0.2"];
edge [fontname="Arial", fontsize=10, color="#555555", fontcolor="gray"];
subgraph cluster_1 {
label="root";
style=filled; color="#5DADE2"; fillcolor="#5DADE220";
"n0" [label="root", shape=folder, fillcolor="#5DADE2", penwidth=1.5];
subgraph cluster_2 {
label="Vercel";
style=filled; color="#3498DB"; fillcolor="#3498DB20";
"n1327" [label="Vercel", shape=folder, fillcolor="#3498DB", penwidth=1.5];
subgraph cluster_3 {
label="NPM";
style=filled; color="#2E86C1"; fillcolor="#2E86C120";
"n1358" [label="NPM", shape=folder, fillcolor="#2E86C1", penwidth=1.5];
}
subgraph cluster_4 {
label="Dependency";
style=filled; color="#2E86C1"; fillcolor="#2E86C120";
"n1329" [label="Dependency", shape=folder, fillcolor="#2E86C1", penwidth=1.5];
subgraph cluster_5 {
label="Turbo";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1330" [label="Turbo", shape=folder, fillcolor="#2874A6", penwidth=1.5];
subgraph cluster_6 {
label="xtask";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1356" [label="xtask", shape=folder, fillcolor="#21618C", penwidth=1.5];
"n1535" [label="cargo (./Vercel/Dependency/Turbo/xtask): vercel-xtask v0.1.0", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1357" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_7 {
label="examples";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1332" [label="examples", shape=folder, fillcolor="#21618C", penwidth=1.5];
subgraph cluster_8 {
label="with-yarn";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1355" [label="with-yarn", shape=folder, fillcolor="#21618C", penwidth=1.5];
}
subgraph cluster_9 {
label="with-vue-nuxt";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1354" [label="with-vue-nuxt", shape=folder, fillcolor="#21618C", penwidth=1.5];
}
subgraph cluster_10 {
label="with-vitest";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1353" [label="with-vitest", shape=folder, fillcolor="#21618C", penwidth=1.5];
}
subgraph cluster_11 {
label="with-vite-react";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1352" [label="with-vite-react", shape=folder, fillcolor="#21618C", penwidth=1.5];
}
subgraph cluster_12 {
label="with-vite";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1351" [label="with-vite", shape=folder, fillcolor="#21618C", penwidth=1.5];
}
subgraph cluster_13 {
label="with-typeorm";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1350" [label="with-typeorm", shape=folder, fillcolor="#21618C", penwidth=1.5];
}
subgraph cluster_14 {
label="with-tailwind";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1349" [label="with-tailwind", shape=folder, fillcolor="#21618C", penwidth=1.5];
}
subgraph cluster_15 {
label="with-svelte";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1348" [label="with-svelte", shape=folder, fillcolor="#21618C", penwidth=1.5];
}
subgraph cluster_16 {
label="with-shell-commands";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1347" [label="with-shell-commands", shape=folder, fillcolor="#21618C", penwidth=1.5];
}
subgraph cluster_17 {
label="with-rollup";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1346" [label="with-rollup", shape=folder, fillcolor="#21618C", penwidth=1.5];
}
subgraph cluster_18 {
label="with-react-native-web";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1345" [label="with-react-native-web", shape=folder, fillcolor="#21618C", penwidth=1.5];
}
subgraph cluster_19 {
label="with-prisma";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1344" [label="with-prisma", shape=folder, fillcolor="#21618C", penwidth=1.5];
}
subgraph cluster_20 {
label="with-npm";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1343" [label="with-npm", shape=folder, fillcolor="#21618C", penwidth=1.5];
}
subgraph cluster_21 {
label="with-nestjs";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1342" [label="with-nestjs", shape=folder, fillcolor="#21618C", penwidth=1.5];
}
subgraph cluster_22 {
label="with-gatsby";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1341" [label="with-gatsby", shape=folder, fillcolor="#21618C", penwidth=1.5];
}
subgraph cluster_23 {
label="with-docker";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1340" [label="with-docker", shape=folder, fillcolor="#21618C", penwidth=1.5];
}
subgraph cluster_24 {
label="with-changesets";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1339" [label="with-changesets", shape=folder, fillcolor="#21618C", penwidth=1.5];
}
subgraph cluster_25 {
label="with-berry";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1338" [label="with-berry", shape=folder, fillcolor="#21618C", penwidth=1.5];
}
subgraph cluster_26 {
label="with-angular";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1337" [label="with-angular", shape=folder, fillcolor="#21618C", penwidth=1.5];
}
subgraph cluster_27 {
label="non-monorepo";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1336" [label="non-monorepo", shape=folder, fillcolor="#21618C", penwidth=1.5];
}
subgraph cluster_28 {
label="kitchen-sink";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1335" [label="kitchen-sink", shape=folder, fillcolor="#21618C", penwidth=1.5];
}
subgraph cluster_29 {
label="design-system";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1334" [label="design-system", shape=folder, fillcolor="#21618C", penwidth=1.5];
}
subgraph cluster_30 {
label="basic";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1333" [label="basic", shape=folder, fillcolor="#21618C", penwidth=1.5];
}
}
subgraph cluster_31 {
label="cli";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1331" [label="cli", shape=folder, fillcolor="#21618C", penwidth=1.5];
}
}
}
subgraph cluster_32 {
label="Cargo";
style=filled; color="#2E86C1"; fillcolor="#2E86C120";
"n1328" [label="Cargo", shape=folder, fillcolor="#2E86C1", penwidth=1.5];
}
}
subgraph cluster_33 {
label="Tauri";
style=filled; color="#3498DB"; fillcolor="#3498DB20";
"n1113" [label="Tauri", shape=folder, fillcolor="#3498DB", penwidth=1.5];
subgraph cluster_34 {
label="NPM";
style=filled; color="#2E86C1"; fillcolor="#2E86C120";
"n1326" [label="NPM", shape=folder, fillcolor="#2E86C1", penwidth=1.5];
}
subgraph cluster_35 {
label="Dependency";
style=filled; color="#2E86C1"; fillcolor="#2E86C120";
"n1115" [label="Dependency", shape=folder, fillcolor="#2E86C1", penwidth=1.5];
subgraph cluster_36 {
label="ZSergeWebview";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1325" [label="ZSergeWebview", shape=folder, fillcolor="#2874A6", penwidth=1.5];
}
subgraph cluster_37 {
label="WryMobile";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1323" [label="WryMobile", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1534" [label="cargo (./Tauri/Dependency/WryMobile): wry-mobile v0.1.0", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1324" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_38 {
label="Wry";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1320" [label="Wry", shape=folder, fillcolor="#2874A6", penwidth=1.5];
subgraph cluster_39 {
label="bench";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1321" [label="bench", shape=folder, fillcolor="#21618C", penwidth=1.5];
"n1533" [label="cargo (./Tauri/Dependency/Wry/bench): wry_bench v0.1.0", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1322" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
}
subgraph cluster_40 {
label="WorkflowTestBed";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1319" [label="WorkflowTestBed", shape=folder, fillcolor="#2874A6", penwidth=1.5];
}
subgraph cluster_41 {
label="WinRTNotification";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1318" [label="WinRTNotification", shape=folder, fillcolor="#2874A6", penwidth=1.5];
}
subgraph cluster_42 {
label="WinRes";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1314" [label="WinRes", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1531" [label="cargo (./Tauri/Dependency/WinRes): tauri-winres v0.3.0", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
subgraph cluster_43 {
label="example";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1316" [label="example", shape=folder, fillcolor="#21618C", penwidth=1.5];
"n1532" [label="cargo (./Tauri/Dependency/WinRes/example): winres-example v0.1.3", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1317" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
"n1315" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_44 {
label="Winit";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1312" [label="Winit", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1530" [label="cargo (./Tauri/Dependency/Winit): tauri-winit v0.24.1", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1313" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_45 {
label="WindowVibrancy";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1311" [label="WindowVibrancy", shape=folder, fillcolor="#2874A6", penwidth=1.5];
}
subgraph cluster_46 {
label="WindowShadows";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1309" [label="WindowShadows", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1529" [label="cargo (./Tauri/Dependency/WindowShadows): window-shadows v0.2.2", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1310" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_47 {
label="Win7Notifications";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1307" [label="Win7Notifications", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1528" [label="cargo (./Tauri/Dependency/Win7Notifications): win7-notifications v0.4.5", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1308" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_48 {
label="WebView";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1303" [label="WebView", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1526" [label="cargo (./Tauri/Dependency/WebView): web-view v0.6.2", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
subgraph cluster_49 {
label="webview-sys";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1305" [label="webview-sys", shape=folder, fillcolor="#21618C", penwidth=1.5];
"n1527" [label="cargo (./Tauri/Dependency/WebView/webview-sys): webview-sys v0.5.0", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1306" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
"n1304" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_50 {
label="WebKit2GTKRS";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1299" [label="WebKit2GTKRS", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1524" [label="cargo (./Tauri/Dependency/WebKit2GTKRS): webkit2gtk v2.0.1", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
subgraph cluster_51 {
label="sys";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1301" [label="sys", shape=folder, fillcolor="#21618C", penwidth=1.5];
"n1525" [label="cargo (./Tauri/Dependency/WebKit2GTKRS/sys): webkit2gtk-sys v2.0.1", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1302" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
"n1300" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_52 {
label="VueCLIPluginTauri";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1298" [label="VueCLIPluginTauri", shape=folder, fillcolor="#2874A6", penwidth=1.5];
}
subgraph cluster_53 {
label="TypeDocusaurus";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1297" [label="TypeDocusaurus", shape=folder, fillcolor="#2874A6", penwidth=1.5];
}
subgraph cluster_54 {
label="TypeDocPluginMarkdown";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1295" [label="TypeDocPluginMarkdown", shape=folder, fillcolor="#2874A6", penwidth=1.5];
subgraph cluster_55 {
label="stub-project";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1296" [label="stub-project", shape=folder, fillcolor="#21618C", penwidth=1.5];
}
}
subgraph cluster_56 {
label="TrayIcon";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1294" [label="TrayIcon", shape=folder, fillcolor="#2874A6", penwidth=1.5];
}
subgraph cluster_57 {
label="TauriWebpack";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1293" [label="TauriWebpack", shape=folder, fillcolor="#2874A6", penwidth=1.5];
}
subgraph cluster_58 {
label="TauriToml";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1292" [label="TauriToml", shape=folder, fillcolor="#2874A6", penwidth=1.5];
}
subgraph cluster_59 {
label="TauriTheia";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1289" [label="TauriTheia", shape=folder, fillcolor="#2874A6", penwidth=1.5];
subgraph cluster_60 {
label="src-tauri";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1290" [label="src-tauri", shape=folder, fillcolor="#21618C", penwidth=1.5];
"n1523" [label="cargo (./Tauri/Dependency/TauriTheia/src-tauri): theia v0.1.0", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1291" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
}
subgraph cluster_61 {
label="TauriStudio";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1286" [label="TauriStudio", shape=folder, fillcolor="#2874A6", penwidth=1.5];
subgraph cluster_62 {
label="i18n";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1288" [label="i18n", shape=folder, fillcolor="#21618C", penwidth=1.5];
}
subgraph cluster_63 {
label="docs-generator";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1287" [label="docs-generator", shape=folder, fillcolor="#21618C", penwidth=1.5];
}
}
subgraph cluster_64 {
label="TauriSearch";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1285" [label="TauriSearch", shape=folder, fillcolor="#2874A6", penwidth=1.5];
}
subgraph cluster_65 {
label="TauriPluginWindowState";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1283" [label="TauriPluginWindowState", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1522" [label="cargo (./Tauri/Dependency/TauriPluginWindowState): tauri-plugin-window-state-read-only v0.1.1", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1284" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_66 {
label="TauriPluginWindow";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1281" [label="TauriPluginWindow", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1521" [label="cargo (./Tauri/Dependency/TauriPluginWindow): tauri-plugin-window v2.0.0-alpha.2", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1282" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_67 {
label="TauriPluginWebSocket";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1279" [label="TauriPluginWebSocket", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1520" [label="cargo (./Tauri/Dependency/TauriPluginWebSocket): tauri-plugin-websocket-read-only v0.0.0", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1280" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_68 {
label="TauriPluginUpload";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1277" [label="TauriPluginUpload", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1519" [label="cargo (./Tauri/Dependency/TauriPluginUpload): tauri-plugin-upload-read-only v0.0.0", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1278" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_69 {
label="TauriPluginUpdater";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1276" [label="TauriPluginUpdater", shape=folder, fillcolor="#2874A6", penwidth=1.5];
}
subgraph cluster_70 {
label="TauriPluginStrongHold";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1274" [label="TauriPluginStrongHold", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1518" [label="cargo (./Tauri/Dependency/TauriPluginStrongHold): tauri-plugin-stronghold-read-only v0.0.0", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1275" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_71 {
label="TauriPluginStore";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1272" [label="TauriPluginStore", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1517" [label="cargo (./Tauri/Dependency/TauriPluginStore): tauri-plugin-store-read-only v0.0.0", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1273" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_72 {
label="TauriPluginSQL";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1270" [label="TauriPluginSQL", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1516" [label="cargo (./Tauri/Dependency/TauriPluginSQL): tauri-plugin-sql-read-only v0.0.0", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1271" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_73 {
label="TauriPluginSingleInstance";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1268" [label="TauriPluginSingleInstance", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1515" [label="cargo (./Tauri/Dependency/TauriPluginSingleInstance): tauri-plugin-single-instance-read-only v0.0.0", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1269" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_74 {
label="TauriPluginShell";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1266" [label="TauriPluginShell", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1514" [label="cargo (./Tauri/Dependency/TauriPluginShell): tauri-plugin-shell-read-only v2.2.0", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1267" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_75 {
label="TauriPluginProcess";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1264" [label="TauriPluginProcess", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1513" [label="cargo (./Tauri/Dependency/TauriPluginProcess): tauri-plugin-process-read-only v2.2.0", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1265" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_76 {
label="TauriPluginPositioner";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1262" [label="TauriPluginPositioner", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1512" [label="cargo (./Tauri/Dependency/TauriPluginPositioner): tauri-plugin-positioner-read-only v1.0.5", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1263" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_77 {
label="TauriPluginPersistedScope";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1260" [label="TauriPluginPersistedScope", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1511" [label="cargo (./Tauri/Dependency/TauriPluginPersistedScope): tauri-plugin-persisted-scope-read-only v0.1.1", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1261" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_78 {
label="TauriPluginOS";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1259" [label="TauriPluginOS", shape=folder, fillcolor="#2874A6", penwidth=1.5];
}
subgraph cluster_79 {
label="TauriPluginNotification";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1258" [label="TauriPluginNotification", shape=folder, fillcolor="#2874A6", penwidth=1.5];
}
subgraph cluster_80 {
label="TauriPluginLog";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1256" [label="TauriPluginLog", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1510" [label="cargo (./Tauri/Dependency/TauriPluginLog): tauri-plugin-log-read-only v0.0.0", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1257" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_81 {
label="TauriPluginLocalhost";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1254" [label="TauriPluginLocalhost", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1509" [label="cargo (./Tauri/Dependency/TauriPluginLocalhost): tauri-plugin-localhost-read-only v0.1.0", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1255" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_82 {
label="TauriPluginHTTP";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1253" [label="TauriPluginHTTP", shape=folder, fillcolor="#2874A6", penwidth=1.5];
}
subgraph cluster_83 {
label="TauriPluginGlobalShortCut";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1251" [label="TauriPluginGlobalShortCut", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1508" [label="cargo (./Tauri/Dependency/TauriPluginGlobalShortCut): tauri-plugin-global-shortcut-read-only v2.2.0", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1252" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_84 {
label="TauriPluginFSWatch";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1249" [label="TauriPluginFSWatch", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1507" [label="cargo (./Tauri/Dependency/TauriPluginFSWatch): tauri-plugin-fs-watch v0.0.0", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1250" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_85 {
label="TauriPluginFSExtra";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1247" [label="TauriPluginFSExtra", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1506" [label="cargo (./Tauri/Dependency/TauriPluginFSExtra): tauri-plugin-fs-extra v0.0.0", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1248" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_86 {
label="TauriPluginFS";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1245" [label="TauriPluginFS", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1505" [label="cargo (./Tauri/Dependency/TauriPluginFS): tauri-plugin-fs-read-only v2.2.0", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1246" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_87 {
label="TauriPluginDialog";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1243" [label="TauriPluginDialog", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1504" [label="cargo (./Tauri/Dependency/TauriPluginDialog): tauri-plugin-dialog-read-only v2.2.0", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1244" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_88 {
label="TauriPluginClipboardManager";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1242" [label="TauriPluginClipboardManager", shape=folder, fillcolor="#2874A6", penwidth=1.5];
}
subgraph cluster_89 {
label="TauriPluginCLI";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1240" [label="TauriPluginCLI", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1503" [label="cargo (./Tauri/Dependency/TauriPluginCLI): tauri-plugin-cli-read-only v2.2.0", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1241" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_90 {
label="TauriPluginAutostart";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1238" [label="TauriPluginAutostart", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1502" [label="cargo (./Tauri/Dependency/TauriPluginAutostart): tauri-plugin-autostart-read-only v0.0.0", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1239" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_91 {
label="TauriPluginAuthenticator";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1236" [label="TauriPluginAuthenticator", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1501" [label="cargo (./Tauri/Dependency/TauriPluginAuthenticator): tauri-plugin-authenticator v0.0.0", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1237" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_92 {
label="TauriPluginApp";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1234" [label="TauriPluginApp", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1500" [label="cargo (./Tauri/Dependency/TauriPluginApp): tauri-plugin-app v2.0.0-alpha.2", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1235" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_93 {
label="TauriLand";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1233" [label="TauriLand", shape=folder, fillcolor="#2874A6", penwidth=1.5];
}
subgraph cluster_94 {
label="TauriInvokeHTTP";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1231" [label="TauriInvokeHTTP", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1499" [label="cargo (./Tauri/Dependency/TauriInvokeHTTP): tauri-invoke-http v0.1.0", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1232" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_95 {
label="TauriInlinerRS";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1229" [label="TauriInlinerRS", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1498" [label="cargo (./Tauri/Dependency/TauriInlinerRS): tauri-inliner v0.0.1", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1230" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_96 {
label="TauriInliner";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1228" [label="TauriInliner", shape=folder, fillcolor="#2874A6", penwidth=1.5];
}
subgraph cluster_97 {
label="TauriIncludeDir";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1221" [label="TauriIncludeDir", shape=folder, fillcolor="#2874A6", penwidth=1.5];
subgraph cluster_98 {
label="lib";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1226" [label="lib", shape=folder, fillcolor="#21618C", penwidth=1.5];
"n1497" [label="cargo (./Tauri/Dependency/TauriIncludeDir/lib): tauri_includedir v0.6.1", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1227" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_99 {
label="example";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1224" [label="example", shape=folder, fillcolor="#21618C", penwidth=1.5];
"n1496" [label="cargo (./Tauri/Dependency/TauriIncludeDir/example): foo v0.1.0", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1225" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_100 {
label="codegen";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1222" [label="codegen", shape=folder, fillcolor="#21618C", penwidth=1.5];
"n1495" [label="cargo (./Tauri/Dependency/TauriIncludeDir/codegen): tauri_includedir_codegen v0.6.3", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1223" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
}
subgraph cluster_101 {
label="TauriHotKeyRS";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1217" [label="TauriHotKeyRS", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1493" [label="cargo (./Tauri/Dependency/TauriHotKeyRS): tauri-hotkey v0.1.2", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
subgraph cluster_102 {
label="tauri-hotkey-sys";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1219" [label="tauri-hotkey-sys", shape=folder, fillcolor="#21618C", penwidth=1.5];
"n1494" [label="cargo (./Tauri/Dependency/TauriHotKeyRS/tauri-hotkey-sys): tauri-hotkey-sys v0.1.2", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1220" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
"n1218" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_103 {
label="TauriGitHubBot";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1216" [label="TauriGitHubBot", shape=folder, fillcolor="#2874A6", penwidth=1.5];
}
subgraph cluster_104 {
label="TauriForage";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1215" [label="TauriForage", shape=folder, fillcolor="#2874A6", penwidth=1.5];
}
subgraph cluster_105 {
label="TauriEGUI";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1213" [label="TauriEGUI", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1492" [label="cargo (./Tauri/Dependency/TauriEGUI): tauri-egui v0.3.0", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1214" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_106 {
label="TauriDocs";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1212" [label="TauriDocs", shape=folder, fillcolor="#2874A6", penwidth=1.5];
}
subgraph cluster_107 {
label="TauriDiscordBot";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1211" [label="TauriDiscordBot", shape=folder, fillcolor="#2874A6", penwidth=1.5];
}
subgraph cluster_108 {
label="TauriDialogRS";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1207" [label="TauriDialogRS", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1490" [label="cargo (./Tauri/Dependency/TauriDialogRS): tauri-dialog v0.1.1", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
subgraph cluster_109 {
label="tauri-dialog-sys";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1209" [label="tauri-dialog-sys", shape=folder, fillcolor="#21618C", penwidth=1.5];
"n1491" [label="cargo (./Tauri/Dependency/TauriDialogRS/tauri-dialog-sys): tauri-dialog-sys v0.1.1", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1210" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
"n1208" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_110 {
label="TauriCon";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1206" [label="TauriCon", shape=folder, fillcolor="#2874A6", penwidth=1.5];
}
subgraph cluster_111 {
label="TauriBindgen";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1201" [label="TauriBindgen", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1488" [label="cargo (./Tauri/Dependency/TauriBindgen): tauri-bindgen v0.0.1", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
subgraph cluster_112 {
label="playground";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1203" [label="playground", shape=folder, fillcolor="#21618C", penwidth=1.5];
"n1489" [label="cargo (./Tauri/Dependency/TauriBindgen/playground): vanilla-example v0.1.0", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
subgraph cluster_113 {
label="editor";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1205" [label="editor", shape=folder, fillcolor="#21618C", penwidth=1.5];
}
"n1204" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
"n1202" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_114 {
label="TauriAction";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1199" [label="TauriAction", shape=folder, fillcolor="#2874A6", penwidth=1.5];
subgraph cluster_115 {
label="dist";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1200" [label="dist", shape=folder, fillcolor="#21618C", penwidth=1.5];
}
}
subgraph cluster_116 {
label="Tauri";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1195" [label="Tauri", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1487" [label="npm (./Tauri/Dependency/Tauri): @codeeditorland/workspace v0.0.1", shape=ellipse, fillcolor="#F4D03F", penwidth=1.5];
"n1198" [label="package.json", shape=note, fillcolor="#FADBD8", penwidth=1];
subgraph cluster_117 {
label="bench";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1196" [label="bench", shape=folder, fillcolor="#21618C", penwidth=1.5];
"n1486" [label="cargo (./Tauri/Dependency/Tauri/bench): tauri_bench v0.1.0", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1197" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
}
subgraph cluster_118 {
label="Tao";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1193" [label="Tao", shape=folder, fillcolor="#2874A6", penwidth=1.5];
subgraph cluster_119 {
label="tao-macros";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1194" [label="tao-macros", shape=folder, fillcolor="#21618C", penwidth=1.5];
}
}
subgraph cluster_120 {
label="Soup2RS";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1189" [label="Soup2RS", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1484" [label="cargo (./Tauri/Dependency/Soup2RS): soup2 v0.2.1", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
subgraph cluster_121 {
label="sys";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1191" [label="sys", shape=folder, fillcolor="#21618C", penwidth=1.5];
"n1485" [label="cargo (./Tauri/Dependency/Soup2RS/sys): soup2-sys v0.2.0", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1192" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
"n1190" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_122 {
label="SmokeTests";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1188" [label="SmokeTests", shape=folder, fillcolor="#2874A6", penwidth=1.5];
}
subgraph cluster_123 {
label="RustXCodePlugin";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1187" [label="RustXCodePlugin", shape=folder, fillcolor="#2874A6", penwidth=1.5];
}
subgraph cluster_124 {
label="RustICNS";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1185" [label="RustICNS", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1483" [label="cargo (./Tauri/Dependency/RustICNS): tauri-icns v0.1.0", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1186" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_125 {
label="RustDocusaurus";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1183" [label="RustDocusaurus", shape=folder, fillcolor="#2874A6", penwidth=1.5];
subgraph cluster_126 {
label="github-action";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1184" [label="github-action", shape=folder, fillcolor="#21618C", penwidth=1.5];
}
}
subgraph cluster_127 {
label="RFCs";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1182" [label="RFCs", shape=folder, fillcolor="#2874A6", penwidth=1.5];
}
subgraph cluster_128 {
label="Realworld";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1181" [label="Realworld", shape=folder, fillcolor="#2874A6", penwidth=1.5];
}
subgraph cluster_129 {
label="PluginsWorkspace";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1180" [label="PluginsWorkspace", shape=folder, fillcolor="#2874A6", penwidth=1.5];
}
subgraph cluster_130 {
label="NSISTauriUtils";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1179" [label="NSISTauriUtils", shape=folder, fillcolor="#2874A6", penwidth=1.5];
}
subgraph cluster_131 {
label="Muda";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1178" [label="Muda", shape=folder, fillcolor="#2874A6", penwidth=1.5];
}
subgraph cluster_132 {
label="MSEdgeDriverManifestCache";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1176" [label="MSEdgeDriverManifestCache", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1482" [label="cargo (./Tauri/Dependency/MSEdgeDriverManifestCache): msedgedriver-manifest-cache v0.1.0", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1177" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_133 {
label="MeiliSearchDocsearch";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1174" [label="MeiliSearchDocsearch", shape=folder, fillcolor="#2874A6", penwidth=1.5];
subgraph cluster_134 {
label="example";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1175" [label="example", shape=folder, fillcolor="#21618C", penwidth=1.5];
}
}
subgraph cluster_135 {
label="Meetings";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1173" [label="Meetings", shape=folder, fillcolor="#2874A6", penwidth=1.5];
}
subgraph cluster_136 {
label="LinuxDeployPluginGtk";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1172" [label="LinuxDeployPluginGtk", shape=folder, fillcolor="#2874A6", penwidth=1.5];
}
subgraph cluster_137 {
label="LinuxDeployPluginGstreamer";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1171" [label="LinuxDeployPluginGstreamer", shape=folder, fillcolor="#2874A6", penwidth=1.5];
}
subgraph cluster_138 {
label="LibAppIndicatorRS";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1167" [label="LibAppIndicatorRS", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1480" [label="cargo (./Tauri/Dependency/LibAppIndicatorRS): libappindicator v0.9.0", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
subgraph cluster_139 {
label="sys";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1169" [label="sys", shape=folder, fillcolor="#21618C", penwidth=1.5];
"n1481" [label="cargo (./Tauri/Dependency/LibAppIndicatorRS/sys): libappindicator-sys v0.9.0", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1170" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
"n1168" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_140 {
label="JavaScriptCoreRS";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1163" [label="JavaScriptCoreRS", shape=folder, fillcolor="#2874A6", penwidth=1.5];
"n1478" [label="cargo (./Tauri/Dependency/JavaScriptCoreRS): javascriptcore-rs v1.1.2", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
subgraph cluster_141 {
label="sys";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1165" [label="sys", shape=folder, fillcolor="#21618C", penwidth=1.5];
"n1479" [label="cargo (./Tauri/Dependency/JavaScriptCoreRS/sys): javascriptcore-rs-sys v1.1.1", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1166" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
"n1164" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_142 {
label="GovernanceAndGuidance";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1159" [label="GovernanceAndGuidance", shape=folder, fillcolor="#2874A6", penwidth=1.5];
subgraph cluster_143 {
label="tools";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1160" [label="tools", shape=folder, fillcolor="#21618C", penwidth=1.5];
subgraph cluster_144 {
label="count-votes";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1161" [label="count-votes", shape=folder, fillcolor="#21618C", penwidth=1.5];
"n1477" [label="cargo (./Tauri/Dependency/GovernanceAndGuidance/tools/count-votes): count-votes v0.1.0", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1162" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
}
}
subgraph cluster_145 {
label="Glutin";
style=filled; color="#2874A6"; fillcolor="#2874A620";
"n1154" [label="Glutin", shape=folder, fillcolor="#2874A6", penwidth=1.5];
subgraph cluster_146 {
label="glutin_examples";
style=filled; color="#21618C"; fillcolor="#21618C20";
"n1157" [label="glutin_examples", shape=folder, fillcolor="#21618C", penwidth=1.5];
"n1476" [label="cargo (./Tauri/Dependency/Glutin/glutin_examples): glutin_examples v0.1.3", shape=ellipse, fillcolor="#EB984E", penwidth=1.5];
"n1158" [label="Cargo.toml", shape=note, fillcolor="#FADBD8", penwidth=1];
}
subgraph cluster_147 {