tree2tui 0.1.2

This crate provides a command line tool to build a Terminal UI (*TUI*) for `tree` like command, aiming to enable folding/expanding tree nodes for large/complex tree.
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
docs v0.1.0 (/home/hong/rust/docs)
├── ahash v0.7.2
│   ├── getrandom v0.2.2
│   │   ├── cfg-if v1.0.0
│   │   └── libc v0.2.92
│   └── once_cell v1.7.2
│   [build-dependencies]
│   └── version_check v0.9.3
├── ansi_term v0.12.1
├── async-speed-limit v0.3.1
│   ├── futures-core v0.3.13
│   ├── futures-io v0.3.13
│   ├── futures-timer v3.0.2
│   └── pin-project-lite v0.2.6
├── async-std v1.9.0
│   ├── async-attributes v1.1.2 (proc-macro)
│   │   ├── quote v1.0.9
│   │   │   └── proc-macro2 v1.0.25
│   │   │       └── unicode-xid v0.2.1
│   │   └── syn v1.0.65
│   │       ├── proc-macro2 v1.0.25 (*)
│   │       ├── quote v1.0.9 (*)
│   │       └── unicode-xid v0.2.1
│   ├── async-channel v1.6.1
│   │   ├── concurrent-queue v1.2.2
│   │   │   └── cache-padded v1.1.1
│   │   ├── event-listener v2.5.1
│   │   └── futures-core v0.3.13
│   ├── async-global-executor v2.0.2
│   │   ├── async-channel v1.6.1 (*)
│   │   ├── async-executor v1.4.0
│   │   │   ├── async-task v4.0.3
│   │   │   ├── concurrent-queue v1.2.2 (*)
│   │   │   ├── fastrand v1.4.0
│   │   │   ├── futures-lite v1.11.3
│   │   │   │   ├── fastrand v1.4.0
│   │   │   │   ├── futures-core v0.3.13
│   │   │   │   ├── futures-io v0.3.13
│   │   │   │   ├── memchr v2.3.4
│   │   │   │   ├── parking v2.0.0
│   │   │   │   ├── pin-project-lite v0.2.6
│   │   │   │   └── waker-fn v1.1.0
│   │   │   ├── once_cell v1.7.2
│   │   │   └── vec-arena v1.1.0
│   │   ├── async-io v1.3.1
│   │   │   ├── concurrent-queue v1.2.2 (*)
│   │   │   ├── fastrand v1.4.0
│   │   │   ├── futures-lite v1.11.3 (*)
│   │   │   ├── libc v0.2.92
│   │   │   ├── log v0.4.14
│   │   │   │   ├── cfg-if v1.0.0
│   │   │   │   ├── serde v1.0.125
│   │   │   │   │   └── serde_derive v1.0.125 (proc-macro)
│   │   │   │   │       ├── proc-macro2 v1.0.25 (*)
│   │   │   │   │       ├── quote v1.0.9 (*)
│   │   │   │   │       └── syn v1.0.65 (*)
│   │   │   │   └── value-bag v1.0.0-alpha.6
│   │   │   │       ├── ctor v0.1.20 (proc-macro)
│   │   │   │       │   ├── quote v1.0.9 (*)
│   │   │   │       │   └── syn v1.0.65 (*)
│   │   │   │       └── sval v1.0.0-alpha.5
│   │   │   ├── nb-connect v1.1.0
│   │   │   │   ├── libc v0.2.92
│   │   │   │   └── socket2 v0.4.0
│   │   │   │       └── libc v0.2.92
│   │   │   ├── once_cell v1.7.2
│   │   │   ├── parking v2.0.0
│   │   │   ├── polling v2.0.3
│   │   │   │   ├── cfg-if v1.0.0
│   │   │   │   ├── libc v0.2.92
│   │   │   │   └── log v0.4.14 (*)
│   │   │   ├── vec-arena v1.1.0
│   │   │   └── waker-fn v1.1.0
│   │   ├── async-mutex v1.4.0
│   │   │   └── event-listener v2.5.1
│   │   ├── blocking v1.0.2
│   │   │   ├── async-channel v1.6.1 (*)
│   │   │   ├── async-task v4.0.3
│   │   │   ├── atomic-waker v1.0.0
│   │   │   ├── fastrand v1.4.0
│   │   │   ├── futures-lite v1.11.3 (*)
│   │   │   └── once_cell v1.7.2
│   │   ├── futures-lite v1.11.3 (*)
│   │   ├── num_cpus v1.13.0
│   │   │   └── libc v0.2.92
│   │   └── once_cell v1.7.2
│   ├── async-io v1.3.1 (*)
│   ├── async-lock v2.3.0
│   │   └── event-listener v2.5.1
│   ├── async-process v1.0.2
│   │   ├── async-io v1.3.1 (*)
│   │   ├── cfg-if v1.0.0
│   │   ├── event-listener v2.5.1
│   │   ├── futures-lite v1.11.3 (*)
│   │   ├── once_cell v1.7.2
│   │   └── signal-hook v0.3.7
│   │       ├── libc v0.2.92
│   │       └── signal-hook-registry v1.3.0
│   │           └── libc v0.2.92
│   ├── crossbeam-utils v0.8.3
│   │   ├── cfg-if v1.0.0
│   │   └── lazy_static v1.4.0
│   │       └── spin v0.5.2
│   │   [build-dependencies]
│   │   └── autocfg v1.0.1
│   ├── futures-core v0.3.13
│   ├── futures-io v0.3.13
│   ├── futures-lite v1.11.3 (*)
│   ├── kv-log-macro v1.0.7
│   │   └── log v0.4.14 (*)
│   ├── log v0.4.14 (*)
│   ├── memchr v2.3.4
│   ├── num_cpus v1.13.0 (*)
│   ├── once_cell v1.7.2
│   ├── pin-project-lite v0.2.6
│   ├── pin-utils v0.1.0
│   └── slab v0.4.2
├── base64 v0.13.0
├── bevy v0.4.0
│   └── bevy_internal v0.4.0
│       ├── bevy_app v0.4.0
│       │   ├── bevy_derive v0.4.0 (proc-macro)
│       │   │   ├── Inflector v0.11.4
│       │   │   ├── find-crate v0.6.3
│       │   │   │   └── toml v0.5.8
│       │   │   │       └── serde v1.0.125 (*)
│       │   │   ├── proc-macro2 v1.0.25 (*)
│       │   │   ├── quote v1.0.9 (*)
│       │   │   └── syn v1.0.65 (*)
│       │   ├── bevy_ecs v0.4.0
│       │   │   ├── bevy_ecs_macros v0.4.0 (proc-macro)
│       │   │   │   ├── find-crate v0.6.3 (*)
│       │   │   │   ├── proc-macro2 v1.0.25 (*)
│       │   │   │   ├── quote v1.0.9 (*)
│       │   │   │   └── syn v1.0.65 (*)
│       │   │   ├── bevy_tasks v0.4.0
│       │   │   │   ├── async-channel v1.6.1 (*)
│       │   │   │   ├── async-executor v1.4.0 (*)
│       │   │   │   ├── event-listener v2.5.1
│       │   │   │   ├── futures-lite v1.11.3 (*)
│       │   │   │   ├── instant v0.1.9
│       │   │   │   │   └── cfg-if v1.0.0
│       │   │   │   └── num_cpus v1.13.0 (*)
│       │   │   ├── bevy_utils v0.4.0
│       │   │   │   ├── ahash v0.6.3
│       │   │   │   │   ├── getrandom v0.2.2 (*)
│       │   │   │   │   └── once_cell v1.7.2
│       │   │   │   │   [build-dependencies]
│       │   │   │   │   └── version_check v0.9.3
│       │   │   │   ├── instant v0.1.9 (*)
│       │   │   │   ├── tracing v0.1.25
│       │   │   │   │   ├── cfg-if v1.0.0
│       │   │   │   │   ├── log v0.4.14 (*)
│       │   │   │   │   ├── pin-project-lite v0.2.6
│       │   │   │   │   ├── tracing-attributes v0.1.15 (proc-macro)
│       │   │   │   │   │   ├── proc-macro2 v1.0.25 (*)
│       │   │   │   │   │   ├── quote v1.0.9 (*)
│       │   │   │   │   │   └── syn v1.0.65 (*)
│       │   │   │   │   └── tracing-core v0.1.17
│       │   │   │   │       └── lazy_static v1.4.0 (*)
│       │   │   │   └── uuid v0.8.2
│       │   │   │       ├── getrandom v0.2.2 (*)
│       │   │   │       └── serde v1.0.125 (*)
│       │   │   ├── bitflags v1.2.1
│       │   │   ├── downcast-rs v1.2.0
│       │   │   ├── fixedbitset v0.3.2
│       │   │   ├── lazy_static v1.4.0 (*)
│       │   │   ├── parking_lot v0.11.1
│       │   │   │   ├── instant v0.1.9 (*)
│       │   │   │   ├── lock_api v0.4.2
│       │   │   │   │   └── scopeguard v1.1.0
│       │   │   │   └── parking_lot_core v0.8.3
│       │   │   │       ├── cfg-if v1.0.0
│       │   │   │       ├── instant v0.1.9 (*)
│       │   │   │       ├── libc v0.2.92
│       │   │   │       └── smallvec v1.6.1
│       │   │   │           └── serde v1.0.125 (*)
│       │   │   ├── rand v0.7.3
│       │   │   │   ├── getrandom v0.1.16
│       │   │   │   │   ├── cfg-if v1.0.0
│       │   │   │   │   └── libc v0.2.92
│       │   │   │   ├── libc v0.2.92
│       │   │   │   ├── rand_chacha v0.2.2
│       │   │   │   │   ├── ppv-lite86 v0.2.10
│       │   │   │   │   └── rand_core v0.5.1
│       │   │   │   │       └── getrandom v0.1.16 (*)
│       │   │   │   ├── rand_core v0.5.1 (*)
│       │   │   │   └── rand_pcg v0.2.1
│       │   │   │       └── rand_core v0.5.1 (*)
│       │   │   ├── serde v1.0.125 (*)
│       │   │   └── thiserror v1.0.24
│       │   │       └── thiserror-impl v1.0.24 (proc-macro)
│       │   │           ├── proc-macro2 v1.0.25 (*)
│       │   │           ├── quote v1.0.9 (*)
│       │   │           └── syn v1.0.65 (*)
│       │   ├── bevy_utils v0.4.0 (*)
│       │   └── serde v1.0.125 (*)
│       ├── bevy_asset v0.4.0
│       │   ├── anyhow v1.0.40
│       │   ├── bevy_app v0.4.0 (*)
│       │   ├── bevy_ecs v0.4.0 (*)
│       │   ├── bevy_reflect v0.4.0
│       │   │   ├── bevy_app v0.4.0 (*)
│       │   │   ├── bevy_ecs v0.4.0 (*)
│       │   │   ├── bevy_reflect_derive v0.4.0 (proc-macro)
│       │   │   │   ├── find-crate v0.6.3 (*)
│       │   │   │   ├── proc-macro2 v1.0.25 (*)
│       │   │   │   ├── quote v1.0.9 (*)
│       │   │   │   ├── syn v1.0.65 (*)
│       │   │   │   └── uuid v0.8.2 (*)
│       │   │   ├── bevy_utils v0.4.0 (*)
│       │   │   ├── downcast-rs v1.2.0
│       │   │   ├── erased-serde v0.3.13
│       │   │   │   └── serde v1.0.125 (*)
│       │   │   ├── glam v0.11.3
│       │   │   │   └── serde v1.0.125 (*)
│       │   │   │   [build-dependencies]
│       │   │   │   └── version_check v0.9.3
│       │   │   ├── parking_lot v0.11.1 (*)
│       │   │   ├── serde v1.0.125 (*)
│       │   │   ├── smallvec v1.6.1 (*)
│       │   │   └── thiserror v1.0.24 (*)
│       │   ├── bevy_tasks v0.4.0 (*)
│       │   ├── bevy_utils v0.4.0 (*)
│       │   ├── crossbeam-channel v0.4.4
│       │   │   ├── crossbeam-utils v0.7.2
│       │   │   │   ├── cfg-if v0.1.10
│       │   │   │   └── lazy_static v1.4.0 (*)
│       │   │   │   [build-dependencies]
│       │   │   │   └── autocfg v1.0.1
│       │   │   └── maybe-uninit v2.0.0
│       │   ├── downcast-rs v1.2.0
│       │   ├── notify v5.0.0-pre.6
│       │   │   ├── anymap v0.12.1
│       │   │   ├── bitflags v1.2.1
│       │   │   ├── crossbeam-channel v0.5.0
│       │   │   │   ├── cfg-if v1.0.0
│       │   │   │   └── crossbeam-utils v0.8.3 (*)
│       │   │   ├── filetime v0.2.14
│       │   │   │   ├── cfg-if v1.0.0
│       │   │   │   └── libc v0.2.92
│       │   │   ├── inotify v0.9.2
│       │   │   │   ├── bitflags v1.2.1
│       │   │   │   ├── inotify-sys v0.1.5
│       │   │   │   │   └── libc v0.2.92
│       │   │   │   └── libc v0.2.92
│       │   │   ├── libc v0.2.92
│       │   │   ├── mio v0.7.11
│       │   │   │   ├── libc v0.2.92
│       │   │   │   └── log v0.4.14 (*)
│       │   │   └── walkdir v2.3.2
│       │   │       └── same-file v1.0.6
│       │   ├── parking_lot v0.11.1 (*)
│       │   ├── rand v0.7.3 (*)
│       │   ├── ron v0.6.4
│       │   │   ├── base64 v0.13.0
│       │   │   ├── bitflags v1.2.1
│       │   │   └── serde v1.0.125 (*)
│       │   ├── serde v1.0.125 (*)
│       │   └── thiserror v1.0.24 (*)
│       ├── bevy_audio v0.4.0
│       │   ├── anyhow v1.0.40
│       │   ├── bevy_app v0.4.0 (*)
│       │   ├── bevy_asset v0.4.0 (*)
│       │   ├── bevy_ecs v0.4.0 (*)
│       │   ├── bevy_reflect v0.4.0 (*)
│       │   ├── bevy_utils v0.4.0 (*)
│       │   ├── parking_lot v0.11.1 (*)
│       │   └── rodio v0.13.1
│       │       ├── cpal v0.13.3
│       │       │   ├── alsa v0.5.0
│       │       │   │   ├── alsa-sys v0.3.1
│       │       │   │   │   └── libc v0.2.92
│       │       │   │   │   [build-dependencies]
│       │       │   │   │   └── pkg-config v0.3.19
│       │       │   │   ├── bitflags v1.2.1
│       │       │   │   ├── libc v0.2.92
│       │       │   │   └── nix v0.20.0
│       │       │   │       ├── bitflags v1.2.1
│       │       │   │       ├── cfg-if v1.0.0
│       │       │   │       └── libc v0.2.92
│       │       │   ├── libc v0.2.92
│       │       │   ├── nix v0.20.0 (*)
│       │       │   ├── parking_lot v0.11.1 (*)
│       │       │   └── thiserror v1.0.24 (*)
│       │       └── minimp3 v0.5.1
│       │           ├── minimp3-sys v0.3.2
│       │           │   [build-dependencies]
│       │           │   └── cc v1.0.67
│       │           │       └── jobserver v0.1.21
│       │           │           └── libc v0.2.92
│       │           ├── slice-deque v0.3.0
│       │           │   └── libc v0.2.92
│       │           └── thiserror v1.0.24 (*)
│       ├── bevy_core v0.4.0
│       │   ├── bevy_app v0.4.0 (*)
│       │   ├── bevy_derive v0.4.0 (proc-macro) (*)
│       │   ├── bevy_ecs v0.4.0 (*)
│       │   ├── bevy_math v0.4.0
│       │   │   ├── bevy_reflect v0.4.0 (*)
│       │   │   └── glam v0.11.3 (*)
│       │   ├── bevy_reflect v0.4.0 (*)
│       │   ├── bevy_tasks v0.4.0 (*)
│       │   └── bevy_utils v0.4.0 (*)
│       ├── bevy_derive v0.4.0 (proc-macro) (*)
│       ├── bevy_diagnostic v0.4.0
│       │   ├── bevy_app v0.4.0 (*)
│       │   ├── bevy_core v0.4.0 (*)
│       │   ├── bevy_ecs v0.4.0 (*)
│       │   ├── bevy_utils v0.4.0 (*)
│       │   └── parking_lot v0.11.1 (*)
│       ├── bevy_dynamic_plugin v0.4.0
│       │   ├── bevy_app v0.4.0 (*)
│       │   └── libloading v0.6.7
│       │       └── cfg-if v1.0.0
│       ├── bevy_ecs v0.4.0 (*)
│       ├── bevy_gilrs v0.4.0
│       │   ├── bevy_app v0.4.0 (*)
│       │   ├── bevy_ecs v0.4.0 (*)
│       │   ├── bevy_input v0.4.0
│       │   │   ├── bevy_app v0.4.0 (*)
│       │   │   ├── bevy_ecs v0.4.0 (*)
│       │   │   ├── bevy_math v0.4.0 (*)
│       │   │   └── bevy_utils v0.4.0 (*)
│       │   ├── bevy_utils v0.4.0 (*)
│       │   └── gilrs v0.8.1
│       │       ├── fnv v1.0.7
│       │       ├── gilrs-core v0.3.1
│       │       │   ├── libc v0.2.92
│       │       │   ├── libudev-sys v0.1.4
│       │       │   │   └── libc v0.2.92
│       │       │   │   [build-dependencies]
│       │       │   │   └── pkg-config v0.3.19
│       │       │   ├── log v0.4.14 (*)
│       │       │   ├── nix v0.20.0 (*)
│       │       │   ├── uuid v0.8.2 (*)
│       │       │   └── vec_map v0.8.2
│       │       ├── log v0.4.14 (*)
│       │       ├── uuid v0.8.2 (*)
│       │       └── vec_map v0.8.2
│       ├── bevy_gltf v0.4.0
│       │   ├── anyhow v1.0.40
│       │   ├── base64 v0.12.3
│       │   ├── bevy_app v0.4.0 (*)
│       │   ├── bevy_asset v0.4.0 (*)
│       │   ├── bevy_ecs v0.4.0 (*)
│       │   ├── bevy_math v0.4.0 (*)
│       │   ├── bevy_pbr v0.4.0
│       │   │   ├── bevy_app v0.4.0 (*)
│       │   │   ├── bevy_asset v0.4.0 (*)
│       │   │   ├── bevy_core v0.4.0 (*)
│       │   │   ├── bevy_derive v0.4.0 (proc-macro) (*)
│       │   │   ├── bevy_ecs v0.4.0 (*)
│       │   │   ├── bevy_math v0.4.0 (*)
│       │   │   ├── bevy_reflect v0.4.0 (*)
│       │   │   ├── bevy_render v0.4.0
│       │   │   │   ├── anyhow v1.0.40
│       │   │   │   ├── bevy-glsl-to-spirv v0.2.1
│       │   │   │   ├── bevy_app v0.4.0 (*)
│       │   │   │   ├── bevy_asset v0.4.0 (*)
│       │   │   │   ├── bevy_core v0.4.0 (*)
│       │   │   │   ├── bevy_derive v0.4.0 (proc-macro) (*)
│       │   │   │   ├── bevy_ecs v0.4.0 (*)
│       │   │   │   ├── bevy_math v0.4.0 (*)
│       │   │   │   ├── bevy_reflect v0.4.0 (*)
│       │   │   │   ├── bevy_transform v0.4.0
│       │   │   │   │   ├── bevy_app v0.4.0 (*)
│       │   │   │   │   ├── bevy_ecs v0.4.0 (*)
│       │   │   │   │   ├── bevy_math v0.4.0 (*)
│       │   │   │   │   ├── bevy_reflect v0.4.0 (*)
│       │   │   │   │   ├── bevy_utils v0.4.0 (*)
│       │   │   │   │   └── smallvec v1.6.1 (*)
│       │   │   │   ├── bevy_utils v0.4.0 (*)
│       │   │   │   ├── bevy_window v0.4.0
│       │   │   │   │   ├── bevy_app v0.4.0 (*)
│       │   │   │   │   ├── bevy_ecs v0.4.0 (*)
│       │   │   │   │   ├── bevy_math v0.4.0 (*)
│       │   │   │   │   └── bevy_utils v0.4.0 (*)
│       │   │   │   ├── bitflags v1.2.1
│       │   │   │   ├── downcast-rs v1.2.0
│       │   │   │   ├── hex v0.4.3
│       │   │   │   ├── hexasphere v3.2.0
│       │   │   │   │   ├── glam v0.13.1
│       │   │   │   │   └── lazy_static v1.4.0 (*)
│       │   │   │   ├── image v0.23.14
│       │   │   │   │   ├── bytemuck v1.5.1
│       │   │   │   │   │   └── bytemuck_derive v1.0.1 (proc-macro)
│       │   │   │   │   │       ├── proc-macro2 v1.0.25 (*)
│       │   │   │   │   │       ├── quote v1.0.9 (*)
│       │   │   │   │   │       └── syn v1.0.65 (*)
│       │   │   │   │   ├── byteorder v1.3.4
│       │   │   │   │   ├── color_quant v1.1.0
│       │   │   │   │   ├── num-iter v0.1.42
│       │   │   │   │   │   ├── num-integer v0.1.44
│       │   │   │   │   │   │   └── num-traits v0.2.14
│       │   │   │   │   │   │       └── libm v0.2.1
│       │   │   │   │   │   │       [build-dependencies]
│       │   │   │   │   │   │       └── autocfg v1.0.1
│       │   │   │   │   │   │   [build-dependencies]
│       │   │   │   │   │   │   └── autocfg v1.0.1
│       │   │   │   │   │   └── num-traits v0.2.14 (*)
│       │   │   │   │   │   [build-dependencies]
│       │   │   │   │   │   └── autocfg v1.0.1
│       │   │   │   │   ├── num-rational v0.3.2
│       │   │   │   │   │   ├── num-integer v0.1.44 (*)
│       │   │   │   │   │   └── num-traits v0.2.14 (*)
│       │   │   │   │   │   [build-dependencies]
│       │   │   │   │   │   └── autocfg v1.0.1
│       │   │   │   │   ├── num-traits v0.2.14 (*)
│       │   │   │   │   ├── png v0.16.8
│       │   │   │   │   │   ├── bitflags v1.2.1
│       │   │   │   │   │   ├── crc32fast v1.2.1
│       │   │   │   │   │   │   └── cfg-if v1.0.0
│       │   │   │   │   │   ├── deflate v0.8.6
│       │   │   │   │   │   │   ├── adler32 v1.2.0
│       │   │   │   │   │   │   └── byteorder v1.3.4
│       │   │   │   │   │   └── miniz_oxide v0.3.7
│       │   │   │   │   │       └── adler32 v1.2.0
│       │   │   │   │   └── scoped_threadpool v0.1.9
│       │   │   │   ├── once_cell v1.7.2
│       │   │   │   ├── parking_lot v0.11.1 (*)
│       │   │   │   ├── serde v1.0.125 (*)
│       │   │   │   ├── smallvec v1.6.1 (*)
│       │   │   │   ├── spirv-reflect v0.2.3
│       │   │   │   │   ├── bitflags v1.2.1
│       │   │   │   │   ├── num-traits v0.2.14 (*)
│       │   │   │   │   ├── serde v1.0.125 (*)
│       │   │   │   │   ├── serde_derive v1.0.125 (proc-macro) (*)
│       │   │   │   │   └── spirv_headers v1.5.0
│       │   │   │   │       ├── bitflags v1.2.1
│       │   │   │   │       └── num-traits v0.2.14 (*)
│       │   │   │   │   [build-dependencies]
│       │   │   │   │   └── cc v1.0.67 (*)
│       │   │   │   └── thiserror v1.0.24 (*)
│       │   │   ├── bevy_transform v0.4.0 (*)
│       │   │   └── bevy_window v0.4.0 (*)
│       │   ├── bevy_reflect v0.4.0 (*)
│       │   ├── bevy_render v0.4.0 (*)
│       │   ├── bevy_scene v0.4.0
│       │   │   ├── anyhow v1.0.40
│       │   │   ├── bevy_app v0.4.0 (*)
│       │   │   ├── bevy_asset v0.4.0 (*)
│       │   │   ├── bevy_ecs v0.4.0 (*)
│       │   │   ├── bevy_reflect v0.4.0 (*)
│       │   │   ├── bevy_transform v0.4.0 (*)
│       │   │   ├── bevy_utils v0.4.0 (*)
│       │   │   ├── parking_lot v0.11.1 (*)
│       │   │   ├── ron v0.6.4 (*)
│       │   │   ├── serde v1.0.125 (*)
│       │   │   ├── thiserror v1.0.24 (*)
│       │   │   └── uuid v0.8.2 (*)
│       │   ├── bevy_transform v0.4.0 (*)
│       │   ├── gltf v0.15.2
│       │   │   ├── byteorder v1.3.4
│       │   │   ├── gltf-json v0.15.2
│       │   │   │   ├── gltf-derive v0.15.2 (proc-macro)
│       │   │   │   │   ├── inflections v1.1.1
│       │   │   │   │   ├── proc-macro2 v1.0.25 (*)
│       │   │   │   │   ├── quote v1.0.9 (*)
│       │   │   │   │   └── syn v1.0.65 (*)
│       │   │   │   ├── serde v1.0.125 (*)
│       │   │   │   ├── serde_derive v1.0.125 (proc-macro) (*)
│       │   │   │   └── serde_json v1.0.64
│       │   │   │       ├── itoa v0.4.7
│       │   │   │       ├── ryu v1.0.5
│       │   │   │       └── serde v1.0.125 (*)
│       │   │   └── lazy_static v1.4.0 (*)
│       │   ├── image v0.23.14 (*)
│       │   └── thiserror v1.0.24 (*)
│       ├── bevy_input v0.4.0 (*)
│       ├── bevy_log v0.4.0
│       │   ├── bevy_app v0.4.0 (*)
│       │   ├── bevy_utils v0.4.0 (*)
│       │   └── tracing-subscriber v0.2.17
│       │       ├── ansi_term v0.12.1
│       │       ├── chrono v0.4.19
│       │       │   ├── libc v0.2.92
│       │       │   ├── num-integer v0.1.44 (*)
│       │       │   ├── num-traits v0.2.14 (*)
│       │       │   ├── serde v1.0.125 (*)
│       │       │   └── time v0.1.44
│       │       │       └── libc v0.2.92
│       │       ├── lazy_static v1.4.0 (*)
│       │       ├── matchers v0.0.1
│       │       │   └── regex-automata v0.1.9
│       │       │       ├── byteorder v1.3.4
│       │       │       └── regex-syntax v0.6.23
│       │       ├── regex v1.4.5
│       │       │   ├── aho-corasick v0.7.15
│       │       │   │   └── memchr v2.3.4
│       │       │   ├── memchr v2.3.4
│       │       │   └── regex-syntax v0.6.23
│       │       ├── serde v1.0.125 (*)
│       │       ├── serde_json v1.0.64 (*)
│       │       ├── sharded-slab v0.1.1
│       │       │   └── lazy_static v1.4.0 (*)
│       │       ├── smallvec v1.6.1 (*)
│       │       ├── thread_local v1.1.3
│       │       │   └── once_cell v1.7.2
│       │       ├── tracing v0.1.25 (*)
│       │       ├── tracing-core v0.1.17 (*)
│       │       ├── tracing-log v0.1.2
│       │       │   ├── lazy_static v1.4.0 (*)
│       │       │   ├── log v0.4.14 (*)
│       │       │   └── tracing-core v0.1.17 (*)
│       │       └── tracing-serde v0.1.2
│       │           ├── serde v1.0.125 (*)
│       │           └── tracing-core v0.1.17 (*)
│       ├── bevy_math v0.4.0 (*)
│       ├── bevy_pbr v0.4.0 (*)
│       ├── bevy_reflect v0.4.0 (*)
│       ├── bevy_render v0.4.0 (*)
│       ├── bevy_scene v0.4.0 (*)
│       ├── bevy_sprite v0.4.0
│       │   ├── bevy_app v0.4.0 (*)
│       │   ├── bevy_asset v0.4.0 (*)
│       │   ├── bevy_core v0.4.0 (*)
│       │   ├── bevy_ecs v0.4.0 (*)
│       │   ├── bevy_math v0.4.0 (*)
│       │   ├── bevy_reflect v0.4.0 (*)
│       │   ├── bevy_render v0.4.0 (*)
│       │   ├── bevy_transform v0.4.0 (*)
│       │   ├── bevy_utils v0.4.0 (*)
│       │   ├── guillotiere v0.6.0
│       │   │   ├── euclid v0.22.2
│       │   │   │   └── num-traits v0.2.14 (*)
│       │   │   └── svg_fmt v0.4.1
│       │   ├── rectangle-pack v0.2.2
│       │   ├── serde v1.0.125 (*)
│       │   └── thiserror v1.0.24 (*)
│       ├── bevy_tasks v0.4.0 (*)
│       ├── bevy_text v0.4.0
│       │   ├── ab_glyph v0.2.10
│       │   │   ├── ab_glyph_rasterizer v0.1.4
│       │   │   └── owned_ttf_parser v0.12.0
│       │   │       └── ttf-parser v0.12.0
│       │   ├── anyhow v1.0.40
│       │   ├── bevy_app v0.4.0 (*)
│       │   ├── bevy_asset v0.4.0 (*)
│       │   ├── bevy_core v0.4.0 (*)
│       │   ├── bevy_ecs v0.4.0 (*)
│       │   ├── bevy_math v0.4.0 (*)
│       │   ├── bevy_reflect v0.4.0 (*)
│       │   ├── bevy_render v0.4.0 (*)
│       │   ├── bevy_sprite v0.4.0 (*)
│       │   ├── bevy_utils v0.4.0 (*)
│       │   ├── glyph_brush_layout v0.2.1
│       │   │   ├── ab_glyph v0.2.10 (*)
│       │   │   ├── approx v0.4.0
│       │   │   │   └── num-traits v0.2.14 (*)
│       │   │   └── xi-unicode v0.3.0
│       │   └── thiserror v1.0.24 (*)
│       ├── bevy_transform v0.4.0 (*)
│       ├── bevy_ui v0.4.0
│       │   ├── bevy_app v0.4.0 (*)
│       │   ├── bevy_asset v0.4.0 (*)
│       │   ├── bevy_core v0.4.0 (*)
│       │   ├── bevy_derive v0.4.0 (proc-macro) (*)
│       │   ├── bevy_ecs v0.4.0 (*)
│       │   ├── bevy_input v0.4.0 (*)
│       │   ├── bevy_math v0.4.0 (*)
│       │   ├── bevy_reflect v0.4.0 (*)
│       │   ├── bevy_render v0.4.0 (*)
│       │   ├── bevy_sprite v0.4.0 (*)
│       │   ├── bevy_text v0.4.0 (*)
│       │   ├── bevy_transform v0.4.0 (*)
│       │   ├── bevy_utils v0.4.0 (*)
│       │   ├── bevy_window v0.4.0 (*)
│       │   ├── serde v1.0.125 (*)
│       │   └── stretch v0.3.2
│       │       ├── lazy_static v1.4.0 (*)
│       │       └── libm v0.1.4
│       ├── bevy_utils v0.4.0 (*)
│       ├── bevy_wgpu v0.4.0
│       │   ├── bevy_app v0.4.0 (*)
│       │   ├── bevy_asset v0.4.0 (*)
│       │   ├── bevy_core v0.4.0 (*)
│       │   ├── bevy_diagnostic v0.4.0 (*)
│       │   ├── bevy_ecs v0.4.0 (*)
│       │   ├── bevy_render v0.4.0 (*)
│       │   ├── bevy_utils v0.4.0 (*)
│       │   ├── bevy_window v0.4.0 (*)
│       │   ├── bevy_winit v0.4.0
│       │   │   ├── bevy_app v0.4.0 (*)
│       │   │   ├── bevy_ecs v0.4.0 (*)
│       │   │   ├── bevy_input v0.4.0 (*)
│       │   │   ├── bevy_math v0.4.0 (*)
│       │   │   ├── bevy_utils v0.4.0 (*)
│       │   │   ├── bevy_window v0.4.0 (*)
│       │   │   └── winit v0.24.0
│       │   │       ├── bitflags v1.2.1
│       │   │       ├── instant v0.1.9 (*)
│       │   │       ├── lazy_static v1.4.0 (*)
│       │   │       ├── libc v0.2.92
│       │   │       ├── log v0.4.14 (*)
│       │   │       ├── mio v0.6.23
│       │   │       │   ├── cfg-if v0.1.10
│       │   │       │   ├── iovec v0.1.4
│       │   │       │   │   └── libc v0.2.92
│       │   │       │   ├── libc v0.2.92
│       │   │       │   ├── log v0.4.14 (*)
│       │   │       │   ├── net2 v0.2.37
│       │   │       │   │   ├── cfg-if v0.1.10
│       │   │       │   │   └── libc v0.2.92
│       │   │       │   └── slab v0.4.2
│       │   │       ├── mio-extras v2.0.6
│       │   │       │   ├── lazycell v1.3.0
│       │   │       │   ├── log v0.4.14 (*)
│       │   │       │   ├── mio v0.6.23 (*)
│       │   │       │   └── slab v0.4.2
│       │   │       ├── parking_lot v0.11.1 (*)
│       │   │       ├── percent-encoding v2.1.0
│       │   │       ├── raw-window-handle v0.3.3
│       │   │       │   └── libc v0.2.92
│       │   │       ├── smithay-client-toolkit v0.12.3
│       │   │       │   ├── andrew v0.3.1
│       │   │       │   │   ├── bitflags v1.2.1
│       │   │       │   │   ├── rusttype v0.9.2
│       │   │       │   │   │   ├── ab_glyph_rasterizer v0.1.4
│       │   │       │   │   │   └── owned_ttf_parser v0.6.0
│       │   │       │   │   │       └── ttf-parser v0.6.2
│       │   │       │   │   ├── walkdir v2.3.2 (*)
│       │   │       │   │   ├── xdg v2.2.0
│       │   │       │   │   └── xml-rs v0.8.3
│       │   │       │   ├── bitflags v1.2.1
│       │   │       │   ├── calloop v0.6.5
│       │   │       │   │   ├── log v0.4.14 (*)
│       │   │       │   │   └── nix v0.18.0
│       │   │       │   │       ├── bitflags v1.2.1
│       │   │       │   │       ├── cfg-if v0.1.10
│       │   │       │   │       └── libc v0.2.92
│       │   │       │   ├── dlib v0.4.2
│       │   │       │   │   └── libloading v0.6.7 (*)
│       │   │       │   ├── lazy_static v1.4.0 (*)
│       │   │       │   ├── log v0.4.14 (*)
│       │   │       │   ├── memmap2 v0.1.0
│       │   │       │   │   └── libc v0.2.92
│       │   │       │   ├── nix v0.18.0 (*)
│       │   │       │   ├── wayland-client v0.28.5
│       │   │       │   │   ├── bitflags v1.2.1
│       │   │       │   │   ├── downcast-rs v1.2.0
│       │   │       │   │   ├── libc v0.2.92
│       │   │       │   │   ├── nix v0.20.0 (*)
│       │   │       │   │   ├── scoped-tls v1.0.0
│       │   │       │   │   ├── wayland-commons v0.28.5
│       │   │       │   │   │   ├── nix v0.20.0 (*)
│       │   │       │   │   │   ├── once_cell v1.7.2
│       │   │       │   │   │   ├── smallvec v1.6.1 (*)
│       │   │       │   │   │   └── wayland-sys v0.28.5
│       │   │       │   │   │       ├── dlib v0.5.0
│       │   │       │   │   │       │   └── libloading v0.7.0
│       │   │       │   │   │       │       └── cfg-if v1.0.0
│       │   │       │   │   │       └── lazy_static v1.4.0 (*)
│       │   │       │   │   │       [build-dependencies]
│       │   │       │   │   │       └── pkg-config v0.3.19
│       │   │       │   │   └── wayland-sys v0.28.5 (*)
│       │   │       │   │   [build-dependencies]
│       │   │       │   │   └── wayland-scanner v0.28.5
│       │   │       │   │       ├── proc-macro2 v1.0.25 (*)
│       │   │       │   │       ├── quote v1.0.9 (*)
│       │   │       │   │       └── xml-rs v0.8.3
│       │   │       │   ├── wayland-cursor v0.28.5
│       │   │       │   │   ├── nix v0.20.0 (*)
│       │   │       │   │   ├── wayland-client v0.28.5 (*)
│       │   │       │   │   └── xcursor v0.3.3
│       │   │       │   │       └── nom v6.1.2
│       │   │       │   │           ├── bitvec v0.19.5
│       │   │       │   │           │   ├── funty v1.1.0
│       │   │       │   │           │   ├── radium v0.5.3
│       │   │       │   │           │   ├── tap v1.0.1
│       │   │       │   │           │   └── wyz v0.2.0
│       │   │       │   │           ├── funty v1.1.0
│       │   │       │   │           ├── lexical-core v0.7.5
│       │   │       │   │           │   ├── arrayvec v0.5.2
│       │   │       │   │           │   ├── bitflags v1.2.1
│       │   │       │   │           │   ├── cfg-if v1.0.0
│       │   │       │   │           │   ├── ryu v1.0.5
│       │   │       │   │           │   └── static_assertions v1.1.0
│       │   │       │   │           └── memchr v2.3.4
│       │   │       │   │           [build-dependencies]
│       │   │       │   │           └── version_check v0.9.3
│       │   │       │   └── wayland-protocols v0.28.5
│       │   │       │       ├── bitflags v1.2.1
│       │   │       │       ├── wayland-client v0.28.5 (*)
│       │   │       │       └── wayland-commons v0.28.5 (*)
│       │   │       │       [build-dependencies]
│       │   │       │       └── wayland-scanner v0.28.5 (*)
│       │   │       ├── wayland-client v0.28.5 (*)
│       │   │       └── x11-dl v2.18.5
│       │   │           ├── lazy_static v1.4.0 (*)
│       │   │           ├── libc v0.2.92
│       │   │           └── maybe-uninit v2.0.0
│       │   │           [build-dependencies]
│       │   │           └── pkg-config v0.3.19
│       │   ├── crossbeam-channel v0.4.4 (*)
│       │   ├── crossbeam-utils v0.7.2 (*)
│       │   ├── futures-lite v1.11.3 (*)
│       │   ├── parking_lot v0.11.1 (*)
│       │   └── wgpu v0.6.2
│       │       ├── arrayvec v0.5.2
│       │       ├── futures v0.3.13
│       │       │   ├── futures-channel v0.3.13
│       │       │   │   ├── futures-core v0.3.13
│       │       │   │   └── futures-sink v0.3.13
│       │       │   ├── futures-core v0.3.13
│       │       │   ├── futures-executor v0.3.13
│       │       │   │   ├── futures-core v0.3.13
│       │       │   │   ├── futures-task v0.3.13
│       │       │   │   ├── futures-util v0.3.13
│       │       │   │   │   ├── futures-channel v0.3.13 (*)
│       │       │   │   │   ├── futures-core v0.3.13
│       │       │   │   │   ├── futures-io v0.3.13
│       │       │   │   │   ├── futures-macro v0.3.13 (proc-macro)
│       │       │   │   │   │   ├── proc-macro-hack v0.5.19 (proc-macro)
│       │       │   │   │   │   ├── proc-macro2 v1.0.25 (*)
│       │       │   │   │   │   ├── quote v1.0.9 (*)
│       │       │   │   │   │   └── syn v1.0.65 (*)
│       │       │   │   │   ├── futures-sink v0.3.13
│       │       │   │   │   ├── futures-task v0.3.13
│       │       │   │   │   ├── memchr v2.3.4
│       │       │   │   │   ├── pin-project-lite v0.2.6
│       │       │   │   │   ├── pin-utils v0.1.0
│       │       │   │   │   ├── proc-macro-hack v0.5.19 (proc-macro)
│       │       │   │   │   ├── proc-macro-nested v0.1.7
│       │       │   │   │   └── slab v0.4.2
│       │       │   │   └── num_cpus v1.13.0 (*)
│       │       │   ├── futures-io v0.3.13
│       │       │   ├── futures-sink v0.3.13
│       │       │   ├── futures-task v0.3.13
│       │       │   └── futures-util v0.3.13 (*)
│       │       ├── gfx-backend-vulkan v0.6.5
│       │       │   ├── arrayvec v0.5.2
│       │       │   ├── ash v0.31.0
│       │       │   │   └── libloading v0.6.7 (*)
│       │       │   ├── byteorder v1.3.4
│       │       │   ├── gfx-hal v0.6.0
│       │       │   │   ├── bitflags v1.2.1
│       │       │   │   └── raw-window-handle v0.3.3 (*)
│       │       │   ├── inplace_it v0.3.3
│       │       │   ├── lazy_static v1.4.0 (*)
│       │       │   ├── log v0.4.14 (*)
│       │       │   ├── raw-window-handle v0.3.3 (*)
│       │       │   ├── smallvec v1.6.1 (*)
│       │       │   └── x11 v2.18.2
│       │       │       └── libc v0.2.92
│       │       │       [build-dependencies]
│       │       │       └── pkg-config v0.3.19
│       │       ├── parking_lot v0.11.1 (*)
│       │       ├── raw-window-handle v0.3.3 (*)
│       │       ├── smallvec v1.6.1 (*)
│       │       ├── tracing v0.1.25 (*)
│       │       ├── typed-arena v2.0.1
│       │       ├── wgpu-core v0.6.5
│       │       │   ├── arrayvec v0.5.2
│       │       │   ├── bitflags v1.2.1
│       │       │   ├── copyless v0.1.5
│       │       │   ├── fxhash v0.2.1
│       │       │   │   └── byteorder v1.3.4
│       │       │   ├── gfx-backend-empty v0.6.0
│       │       │   │   ├── gfx-hal v0.6.0 (*)
│       │       │   │   ├── log v0.4.14 (*)
│       │       │   │   └── raw-window-handle v0.3.3 (*)
│       │       │   ├── gfx-backend-vulkan v0.6.5 (*)
│       │       │   ├── gfx-descriptor v0.2.0
│       │       │   │   ├── arrayvec v0.5.2
│       │       │   │   ├── fxhash v0.2.1 (*)
│       │       │   │   ├── gfx-hal v0.6.0 (*)
│       │       │   │   └── log v0.4.14 (*)
│       │       │   ├── gfx-hal v0.6.0 (*)
│       │       │   ├── gfx-memory v0.2.2
│       │       │   │   ├── bit-set v0.5.2
│       │       │   │   │   └── bit-vec v0.6.3
│       │       │   │   ├── fxhash v0.2.1 (*)
│       │       │   │   ├── gfx-hal v0.6.0 (*)
│       │       │   │   ├── log v0.4.14 (*)
│       │       │   │   └── slab v0.4.2
│       │       │   ├── naga v0.2.0
│       │       │   │   ├── bitflags v1.2.1
│       │       │   │   ├── fxhash v0.2.1 (*)
│       │       │   │   ├── log v0.4.14 (*)
│       │       │   │   ├── num-traits v0.2.14 (*)
│       │       │   │   ├── spirv_headers v1.5.0 (*)
│       │       │   │   └── thiserror v1.0.24 (*)
│       │       │   ├── parking_lot v0.11.1 (*)
│       │       │   ├── raw-window-handle v0.3.3 (*)
│       │       │   ├── smallvec v1.6.1 (*)
│       │       │   ├── thiserror v1.0.24 (*)
│       │       │   ├── tracing v0.1.25 (*)
│       │       │   └── wgpu-types v0.6.1
│       │       │       └── bitflags v1.2.1
│       │       └── wgpu-types v0.6.1 (*)
│       ├── bevy_window v0.4.0 (*)
│       └── bevy_winit v0.4.0 (*)
├── bincode v1.3.2
│   ├── byteorder v1.3.4
│   └── serde v1.0.125 (*)
├── binread v2.1.0
│   └── binread_derive v2.0.0 (proc-macro)
│       ├── either v1.6.1
│       ├── proc-macro2 v1.0.25 (*)
│       ├── quote v1.0.9 (*)
│       └── syn v1.0.65 (*)
├── binwrite v0.2.1
│   ├── binwrite_derive v0.2.1 (proc-macro)
│   │   ├── proc-macro2 v1.0.25 (*)
│   │   ├── quote v1.0.9 (*)
│   │   └── syn v1.0.65 (*)
│   └── paste v0.1.18
│       ├── paste-impl v0.1.18 (proc-macro)
│       │   └── proc-macro-hack v0.5.19 (proc-macro)
│       └── proc-macro-hack v0.5.19 (proc-macro)
├── bitflags v1.2.1
├── block-modes v0.7.0
│   ├── block-padding v0.2.1
│   └── cipher v0.2.5
│       └── generic-array v0.14.4
│           └── typenum v1.13.0
│           [build-dependencies]
│           └── version_check v0.9.3
├── botan v0.8.1
│   ├── botan-sys v0.8.1
│   │   └── cty v0.2.1
│   └── cty v0.2.1
├── bytes v1.0.1
├── cc v1.0.67 (*)
├── chrono v0.4.19 (*)
├── clap v3.0.0-beta.2
│   ├── atty v0.2.14
│   │   └── libc v0.2.92
│   ├── bitflags v1.2.1
│   ├── clap_derive v3.0.0-beta.2 (proc-macro)
│   │   ├── heck v0.3.2
│   │   │   └── unicode-segmentation v1.7.1
│   │   ├── proc-macro-error v1.0.4
│   │   │   ├── proc-macro-error-attr v1.0.4 (proc-macro)
│   │   │   │   ├── proc-macro2 v1.0.25 (*)
│   │   │   │   └── quote v1.0.9 (*)
│   │   │   │   [build-dependencies]
│   │   │   │   └── version_check v0.9.3
│   │   │   ├── proc-macro2 v1.0.25 (*)
│   │   │   ├── quote v1.0.9 (*)
│   │   │   └── syn v1.0.65 (*)
│   │   │   [build-dependencies]
│   │   │   └── version_check v0.9.3
│   │   ├── proc-macro2 v1.0.25 (*)
│   │   ├── quote v1.0.9 (*)
│   │   └── syn v1.0.65 (*)
│   ├── indexmap v1.6.2
│   │   └── hashbrown v0.9.1
│   │       └── ahash v0.4.7
│   │   [build-dependencies]
│   │   └── autocfg v1.0.1
│   ├── lazy_static v1.4.0 (*)
│   ├── os_str_bytes v2.4.0
│   ├── strsim v0.10.0
│   ├── termcolor v1.1.2
│   ├── textwrap v0.12.1
│   │   └── unicode-width v0.1.8
│   ├── unicode-width v0.1.8
│   └── vec_map v0.8.2
├── config v0.11.0
│   ├── lazy_static v1.4.0 (*)
│   ├── nom v5.1.2
│   │   ├── lexical-core v0.7.5 (*)
│   │   └── memchr v2.3.4
│   │   [build-dependencies]
│   │   └── version_check v0.9.3
│   ├── rust-ini v0.13.0
│   ├── serde v1.0.125 (*)
│   ├── serde-hjson v0.9.1
│   │   ├── lazy_static v1.4.0 (*)
│   │   ├── num-traits v0.1.43
│   │   │   └── num-traits v0.2.14 (*)
│   │   ├── regex v1.4.5 (*)
│   │   └── serde v0.8.23
│   ├── serde_json v1.0.64 (*)
│   ├── toml v0.5.8 (*)
│   └── yaml-rust v0.4.5
│       └── linked-hash-map v0.5.4
├── const-random v0.1.13
│   ├── const-random-macro v0.1.13 (proc-macro)
│   │   ├── getrandom v0.2.2 (*)
│   │   ├── lazy_static v1.4.0 (*)
│   │   ├── proc-macro-hack v0.5.19 (proc-macro)
│   │   └── tiny-keccak v2.0.2
│   │       └── crunchy v0.2.2
│   └── proc-macro-hack v0.5.19 (proc-macro)
├── crossbeam v0.8.0
│   ├── cfg-if v1.0.0
│   ├── crossbeam-channel v0.5.0 (*)
│   ├── crossbeam-deque v0.8.0
│   │   ├── cfg-if v1.0.0
│   │   ├── crossbeam-epoch v0.9.3
│   │   │   ├── cfg-if v1.0.0
│   │   │   ├── crossbeam-utils v0.8.3 (*)
│   │   │   ├── lazy_static v1.4.0 (*)
│   │   │   ├── memoffset v0.6.3
│   │   │   │   [build-dependencies]
│   │   │   │   └── autocfg v1.0.1
│   │   │   └── scopeguard v1.1.0
│   │   └── crossbeam-utils v0.8.3 (*)
│   ├── crossbeam-epoch v0.9.3 (*)
│   ├── crossbeam-queue v0.3.1
│   │   ├── cfg-if v1.0.0
│   │   └── crossbeam-utils v0.8.3 (*)
│   └── crossbeam-utils v0.8.3 (*)
├── cursive v0.16.3
│   ├── ahash v0.6.3 (*)
│   ├── cfg-if v1.0.0
│   ├── crossbeam-channel v0.5.0 (*)
│   ├── cursive_core v0.2.2
│   │   ├── ahash v0.6.3 (*)
│   │   ├── chrono v0.4.19 (*)
│   │   ├── crossbeam-channel v0.5.0 (*)
│   │   ├── enum-map v0.6.4
│   │   │   ├── array-macro v1.0.5
│   │   │   └── enum-map-derive v0.4.6 (proc-macro)
│   │   │       ├── proc-macro2 v1.0.25 (*)
│   │   │       ├── quote v1.0.9 (*)
│   │   │       └── syn v1.0.65 (*)
│   │   ├── lazy_static v1.4.0 (*)
│   │   ├── libc v0.2.92
│   │   ├── log v0.4.14 (*)
│   │   ├── num v0.3.1
│   │   │   ├── num-complex v0.3.1
│   │   │   │   └── num-traits v0.2.14 (*)
│   │   │   ├── num-integer v0.1.44 (*)
│   │   │   ├── num-iter v0.1.42 (*)
│   │   │   ├── num-rational v0.3.2 (*)
│   │   │   └── num-traits v0.2.14 (*)
│   │   ├── owning_ref v0.4.1
│   │   │   └── stable_deref_trait v1.2.0
│   │   ├── syn v1.0.65 (*)
│   │   ├── unicode-segmentation v1.7.1
│   │   ├── unicode-width v0.1.8
│   │   ├── wasmer_enumset v1.0.1
│   │   │   ├── num-traits v0.2.14 (*)
│   │   │   └── wasmer_enumset_derive v0.5.0 (proc-macro)
│   │   │       ├── darling v0.10.2
│   │   │       │   ├── darling_core v0.10.2
│   │   │       │   │   ├── fnv v1.0.7
│   │   │       │   │   ├── ident_case v1.0.1
│   │   │       │   │   ├── proc-macro2 v1.0.25 (*)
│   │   │       │   │   ├── quote v1.0.9 (*)
│   │   │       │   │   ├── strsim v0.9.3
│   │   │       │   │   └── syn v1.0.65 (*)
│   │   │       │   └── darling_macro v0.10.2 (proc-macro)
│   │   │       │       ├── darling_core v0.10.2 (*)
│   │   │       │       ├── quote v1.0.9 (*)
│   │   │       │       └── syn v1.0.65 (*)
│   │   │       ├── proc-macro2 v1.0.25 (*)
│   │   │       ├── quote v1.0.9 (*)
│   │   │       └── syn v1.0.65 (*)
│   │   └── xi-unicode v0.3.0
│   ├── lazy_static v1.4.0 (*)
│   ├── libc v0.2.92
│   ├── log v0.4.14 (*)
│   ├── maplit v1.0.2
│   ├── ncurses v5.101.0
│   │   └── libc v0.2.92
│   │   [build-dependencies]
│   │   ├── cc v1.0.67 (*)
│   │   └── pkg-config v0.3.19
│   ├── signal-hook v0.3.7 (*)
│   ├── term_size v0.3.2
│   │   └── libc v0.2.92
│   ├── unicode-segmentation v1.7.1
│   ├── unicode-width v0.1.8
│   └── wasmer_enumset v1.0.1 (*)
├── data-encoding v2.3.2
├── derivative v2.2.0 (proc-macro)
│   ├── proc-macro2 v1.0.25 (*)
│   ├── quote v1.0.9 (*)
│   └── syn v1.0.65 (*)
├── derive_more v0.99.13 (proc-macro)
│   ├── convert_case v0.4.0
│   ├── proc-macro2 v1.0.25 (*)
│   ├── quote v1.0.9 (*)
│   └── syn v1.0.65 (*)
├── diesel v1.4.6
│   ├── byteorder v1.3.4
│   └── diesel_derives v1.4.1 (proc-macro)
│       ├── proc-macro2 v1.0.25 (*)
│       ├── quote v1.0.9 (*)
│       └── syn v1.0.65 (*)
├── easy-ext v0.2.7 (proc-macro)
│   ├── quote v1.0.9 (*)
│   └── syn v1.0.65 (*)
├── env_logger v0.8.3
│   ├── atty v0.2.14 (*)
│   ├── humantime v2.1.0
│   ├── log v0.4.14 (*)
│   ├── regex v1.4.5 (*)
│   └── termcolor v1.1.2
├── ffmpeg-next v4.3.8
│   ├── bitflags v1.2.1
│   ├── ffmpeg-sys-next v4.3.5
│   │   └── libc v0.2.92
│   │   [build-dependencies]
│   │   ├── bindgen v0.54.0
│   │   │   ├── bitflags v1.2.1
│   │   │   ├── cexpr v0.4.0
│   │   │   │   └── nom v5.1.2 (*)
│   │   │   ├── cfg-if v0.1.10
│   │   │   ├── clang-sys v0.29.3
│   │   │   │   ├── glob v0.3.0
│   │   │   │   ├── libc v0.2.92
│   │   │   │   └── libloading v0.5.2
│   │   │   │       [build-dependencies]
│   │   │   │       └── cc v1.0.67 (*)
│   │   │   │   [build-dependencies]
│   │   │   │   └── glob v0.3.0
│   │   │   ├── lazy_static v1.4.0 (*)
│   │   │   ├── lazycell v1.3.0
│   │   │   ├── peeking_take_while v0.1.2
│   │   │   ├── proc-macro2 v1.0.25 (*)
│   │   │   ├── quote v1.0.9 (*)
│   │   │   ├── regex v1.4.5 (*)
│   │   │   ├── rustc-hash v1.1.0
│   │   │   └── shlex v0.1.1
│   │   ├── cc v1.0.67 (*)
│   │   ├── num_cpus v1.13.0 (*)
│   │   └── pkg-config v0.3.19
│   └── libc v0.2.92
├── flate2 v1.0.20
│   ├── cfg-if v1.0.0
│   ├── crc32fast v1.2.1 (*)
│   ├── libc v0.2.92
│   └── miniz_oxide v0.4.4
│       └── adler v1.0.2
│       [build-dependencies]
│       └── autocfg v1.0.1
├── glob v0.3.0
├── hex v0.4.3
├── hex-literal v0.3.1 (proc-macro)
├── iced v0.3.0
│   ├── iced_core v0.4.0
│   ├── iced_futures v0.3.0
│   │   ├── futures v0.3.13 (*)
│   │   └── log v0.4.14 (*)
│   ├── iced_wgpu v0.4.0
│   │   ├── bytemuck v1.5.1 (*)
│   │   ├── futures v0.3.13 (*)
│   │   ├── glyph_brush v0.7.2
│   │   │   ├── glyph_brush_draw_cache v0.1.4
│   │   │   │   ├── ab_glyph v0.2.10 (*)
│   │   │   │   ├── crossbeam-channel v0.5.0 (*)
│   │   │   │   ├── crossbeam-deque v0.8.0 (*)
│   │   │   │   ├── linked-hash-map v0.5.4
│   │   │   │   ├── rayon v1.5.0
│   │   │   │   │   ├── crossbeam-deque v0.8.0 (*)
│   │   │   │   │   ├── either v1.6.1
│   │   │   │   │   └── rayon-core v1.9.0
│   │   │   │   │       ├── crossbeam-channel v0.5.0 (*)
│   │   │   │   │       ├── crossbeam-deque v0.8.0 (*)
│   │   │   │   │       ├── crossbeam-utils v0.8.3 (*)
│   │   │   │   │       ├── lazy_static v1.4.0 (*)
│   │   │   │   │       └── num_cpus v1.13.0 (*)
│   │   │   │   │   [build-dependencies]
│   │   │   │   │   └── autocfg v1.0.1
│   │   │   │   └── rustc-hash v1.1.0
│   │   │   ├── glyph_brush_layout v0.2.1 (*)
│   │   │   ├── log v0.4.14 (*)
│   │   │   ├── ordered-float v2.1.1
│   │   │   │   └── num-traits v0.2.14 (*)
│   │   │   ├── rustc-hash v1.1.0
│   │   │   └── twox-hash v1.6.0
│   │   │       ├── cfg-if v0.1.10
│   │   │       ├── rand v0.7.3 (*)
│   │   │       └── static_assertions v1.1.0
│   │   ├── guillotiere v0.6.0 (*)
│   │   ├── iced_graphics v0.2.0
│   │   │   ├── bytemuck v1.5.1 (*)
│   │   │   ├── font-kit v0.10.0
│   │   │   │   ├── bitflags v1.2.1
│   │   │   │   ├── byteorder v1.3.4
│   │   │   │   ├── dirs v2.0.2
│   │   │   │   │   ├── cfg-if v0.1.10
│   │   │   │   │   └── dirs-sys v0.3.5
│   │   │   │   │       └── libc v0.2.92
│   │   │   │   ├── float-ord v0.2.0
│   │   │   │   ├── freetype v0.7.0
│   │   │   │   │   ├── freetype-sys v0.13.1
│   │   │   │   │   │   └── libc v0.2.92
│   │   │   │   │   │   [build-dependencies]
│   │   │   │   │   │   ├── cmake v0.1.45
│   │   │   │   │   │   │   └── cc v1.0.67 (*)
│   │   │   │   │   │   └── pkg-config v0.3.19
│   │   │   │   │   └── libc v0.2.92
│   │   │   │   ├── lazy_static v1.4.0 (*)
│   │   │   │   ├── libc v0.2.92
│   │   │   │   ├── log v0.4.14 (*)
│   │   │   │   ├── pathfinder_geometry v0.5.1
│   │   │   │   │   ├── log v0.4.14 (*)
│   │   │   │   │   └── pathfinder_simd v0.5.0
│   │   │   │   │       [build-dependencies]
│   │   │   │   │       └── rustc_version v0.2.3
│   │   │   │   │           └── semver v0.9.0
│   │   │   │   │               └── semver-parser v0.7.0
│   │   │   │   ├── pathfinder_simd v0.5.0 (*)
│   │   │   │   ├── servo-fontconfig v0.5.1
│   │   │   │   │   ├── libc v0.2.92
│   │   │   │   │   └── servo-fontconfig-sys v5.1.0
│   │   │   │   │       ├── expat-sys v2.1.6
│   │   │   │   │       │   [build-dependencies]
│   │   │   │   │       │   ├── cmake v0.1.45 (*)
│   │   │   │   │       │   └── pkg-config v0.3.19
│   │   │   │   │       └── freetype-sys v0.13.1 (*)
│   │   │   │   │       [build-dependencies]
│   │   │   │   │       └── pkg-config v0.3.19
│   │   │   │   └── walkdir v2.3.2 (*)
│   │   │   ├── glam v0.10.2
│   │   │   │   [build-dependencies]
│   │   │   │   └── version_check v0.9.3
│   │   │   ├── iced_native v0.4.0
│   │   │   │   ├── iced_core v0.4.0
│   │   │   │   ├── iced_futures v0.3.0 (*)
│   │   │   │   ├── num-traits v0.2.14 (*)
│   │   │   │   ├── twox-hash v1.6.0 (*)
│   │   │   │   └── unicode-segmentation v1.7.1
│   │   │   ├── iced_style v0.3.0
│   │   │   │   └── iced_core v0.4.0
│   │   │   ├── raw-window-handle v0.3.3 (*)
│   │   │   └── thiserror v1.0.24 (*)
│   │   ├── iced_native v0.4.0 (*)
│   │   ├── log v0.4.14 (*)
│   │   ├── raw-window-handle v0.3.3 (*)
│   │   ├── wgpu v0.7.1
│   │   │   ├── arrayvec v0.5.2
│   │   │   ├── parking_lot v0.11.1 (*)
│   │   │   ├── raw-window-handle v0.3.3 (*)
│   │   │   ├── smallvec v1.6.1 (*)
│   │   │   ├── tracing v0.1.25 (*)
│   │   │   ├── wgpu-core v0.7.1
│   │   │   │   ├── arrayvec v0.5.2
│   │   │   │   ├── bitflags v1.2.1
│   │   │   │   ├── copyless v0.1.5
│   │   │   │   ├── fxhash v0.2.1 (*)
│   │   │   │   ├── gfx-backend-empty v0.7.0
│   │   │   │   │   ├── gfx-hal v0.7.0
│   │   │   │   │   │   ├── bitflags v1.2.1
│   │   │   │   │   │   ├── naga v0.3.2
│   │   │   │   │   │   │   ├── bit-set v0.5.2 (*)
│   │   │   │   │   │   │   ├── bitflags v1.2.1
│   │   │   │   │   │   │   ├── fxhash v0.2.1 (*)
│   │   │   │   │   │   │   ├── log v0.4.14 (*)
│   │   │   │   │   │   │   ├── num-traits v0.2.14 (*)
│   │   │   │   │   │   │   ├── petgraph v0.5.1
│   │   │   │   │   │   │   │   ├── fixedbitset v0.2.0
│   │   │   │   │   │   │   │   └── indexmap v1.6.2 (*)
│   │   │   │   │   │   │   ├── spirv_headers v1.5.0 (*)
│   │   │   │   │   │   │   └── thiserror v1.0.24 (*)
│   │   │   │   │   │   ├── raw-window-handle v0.3.3 (*)
│   │   │   │   │   │   └── thiserror v1.0.24 (*)
│   │   │   │   │   ├── log v0.4.14 (*)
│   │   │   │   │   └── raw-window-handle v0.3.3 (*)
│   │   │   │   ├── gfx-backend-gl v0.7.1
│   │   │   │   │   ├── arrayvec v0.5.2
│   │   │   │   │   ├── bitflags v1.2.1
│   │   │   │   │   ├── gfx-auxil v0.8.0
│   │   │   │   │   │   ├── fxhash v0.2.1 (*)
│   │   │   │   │   │   ├── gfx-hal v0.7.0 (*)
│   │   │   │   │   │   └── spirv_cross v0.23.1
│   │   │   │   │   │       [build-dependencies]
│   │   │   │   │   │       └── cc v1.0.67 (*)
│   │   │   │   │   ├── gfx-hal v0.7.0 (*)
│   │   │   │   │   ├── glow v0.7.2
│   │   │   │   │   ├── khronos-egl v3.0.2
│   │   │   │   │   │   ├── libc v0.2.92
│   │   │   │   │   │   └── libloading v0.6.7 (*)
│   │   │   │   │   ├── libloading v0.6.7 (*)
│   │   │   │   │   ├── log v0.4.14 (*)
│   │   │   │   │   ├── naga v0.3.2 (*)
│   │   │   │   │   ├── parking_lot v0.11.1 (*)
│   │   │   │   │   ├── raw-window-handle v0.3.3 (*)
│   │   │   │   │   └── spirv_cross v0.23.1 (*)
│   │   │   │   ├── gfx-backend-vulkan v0.7.0
│   │   │   │   │   ├── arrayvec v0.5.2
│   │   │   │   │   ├── ash v0.31.0 (*)
│   │   │   │   │   ├── byteorder v1.3.4
│   │   │   │   │   ├── gfx-hal v0.7.0 (*)
│   │   │   │   │   ├── inplace_it v0.3.3
│   │   │   │   │   ├── log v0.4.14 (*)
│   │   │   │   │   ├── naga v0.3.2 (*)
│   │   │   │   │   ├── parking_lot v0.11.1 (*)
│   │   │   │   │   ├── raw-window-handle v0.3.3 (*)
│   │   │   │   │   └── smallvec v1.6.1 (*)
│   │   │   │   ├── gfx-hal v0.7.0 (*)
│   │   │   │   ├── gpu-alloc v0.3.0
│   │   │   │   │   ├── bitflags v1.2.1
│   │   │   │   │   ├── gpu-alloc-types v0.2.0
│   │   │   │   │   │   └── bitflags v1.2.1
│   │   │   │   │   └── tracing v0.1.25 (*)
│   │   │   │   ├── gpu-descriptor v0.1.1
│   │   │   │   │   ├── bitflags v1.2.1
│   │   │   │   │   ├── gpu-descriptor-types v0.1.1
│   │   │   │   │   │   └── bitflags v1.2.1
│   │   │   │   │   ├── hashbrown v0.9.1 (*)
│   │   │   │   │   └── tracing v0.1.25 (*)
│   │   │   │   ├── naga v0.3.2 (*)
│   │   │   │   ├── parking_lot v0.11.1 (*)
│   │   │   │   ├── raw-window-handle v0.3.3 (*)
│   │   │   │   ├── smallvec v1.6.1 (*)
│   │   │   │   ├── thiserror v1.0.24 (*)
│   │   │   │   ├── tracing v0.1.25 (*)
│   │   │   │   └── wgpu-types v0.7.0
│   │   │   │       └── bitflags v1.2.1
│   │   │   │   [build-dependencies]
│   │   │   │   └── cfg_aliases v0.1.1
│   │   │   └── wgpu-types v0.7.0 (*)
│   │   └── wgpu_glyph v0.11.0
│   │       ├── bytemuck v1.5.1 (*)
│   │       ├── glyph_brush v0.7.2 (*)
│   │       ├── log v0.4.14 (*)
│   │       └── wgpu v0.7.1 (*)
│   ├── iced_winit v0.3.0
│   │   ├── iced_futures v0.3.0 (*)
│   │   ├── iced_graphics v0.2.0 (*)
│   │   ├── iced_native v0.4.0 (*)
│   │   ├── log v0.4.14 (*)
│   │   ├── thiserror v1.0.24 (*)
│   │   ├── window_clipboard v0.2.0
│   │   │   ├── clipboard_wayland v0.2.0
│   │   │   │   └── smithay-clipboard v0.6.3
│   │   │   │       ├── smithay-client-toolkit v0.12.3 (*)
│   │   │   │       └── wayland-client v0.28.5 (*)
│   │   │   ├── clipboard_x11 v0.3.1
│   │   │   │   ├── thiserror v1.0.24 (*)
│   │   │   │   └── x11rb v0.8.1
│   │   │   │       ├── gethostname v0.2.1
│   │   │   │       │   └── libc v0.2.92
│   │   │   │       └── nix v0.20.0 (*)
│   │   │   └── raw-window-handle v0.3.3 (*)
│   │   └── winit v0.24.0 (*)
│   └── thiserror v1.0.24 (*)
├── indextree v4.3.1
├── json v0.12.4
├── lazy_static v1.4.0 (*)
├── log v0.4.14 (*)
├── log4rs v1.0.0
│   ├── anyhow v1.0.40
│   ├── arc-swap v0.4.8
│   ├── chrono v0.4.19 (*)
│   ├── derivative v2.2.0 (proc-macro) (*)
│   ├── fnv v1.0.7
│   ├── humantime v2.1.0
│   ├── libc v0.2.92
│   ├── log v0.4.14 (*)
│   ├── log-mdc v0.1.0
│   ├── parking_lot v0.11.1 (*)
│   ├── regex v1.4.5 (*)
│   ├── serde v1.0.125 (*)
│   ├── serde-value v0.7.0
│   │   ├── ordered-float v2.1.1 (*)
│   │   └── serde v1.0.125 (*)
│   ├── serde_json v1.0.64 (*)
│   ├── serde_yaml v0.8.17
│   │   ├── dtoa v0.4.8
│   │   ├── linked-hash-map v0.5.4
│   │   ├── serde v1.0.125 (*)
│   │   └── yaml-rust v0.4.5 (*)
│   ├── thiserror v1.0.24 (*)
│   ├── thread-id v3.3.0
│   │   └── libc v0.2.92
│   └── typemap v0.3.3
│       └── unsafe-any v0.4.2
│           └── traitobject v0.1.0
├── memmap v0.7.0
│   └── libc v0.2.92
├── nats v0.9.8
│   ├── base64 v0.13.0
│   ├── base64-url v1.4.9
│   │   └── base64 v0.13.0
│   ├── crossbeam-channel v0.5.0 (*)
│   ├── fastrand v1.4.0
│   ├── itoa v0.4.7
│   ├── json v0.12.4
│   ├── libc v0.2.92
│   ├── log v0.4.14 (*)
│   ├── memchr v2.3.4
│   ├── nkeys v0.0.11
│   │   ├── byteorder v1.3.4
│   │   ├── data-encoding v2.3.2
│   │   ├── ed25519-dalek v1.0.1
│   │   │   ├── curve25519-dalek v3.0.2
│   │   │   │   ├── byteorder v1.3.4
│   │   │   │   ├── digest v0.9.0
│   │   │   │   │   └── generic-array v0.14.4 (*)
│   │   │   │   ├── rand_core v0.5.1 (*)
│   │   │   │   ├── subtle v2.4.0
│   │   │   │   └── zeroize v1.2.0
│   │   │   │       └── zeroize_derive v1.0.1 (proc-macro)
│   │   │   │           ├── proc-macro2 v1.0.25 (*)
│   │   │   │           ├── quote v1.0.9 (*)
│   │   │   │           ├── syn v1.0.65 (*)
│   │   │   │           └── synstructure v0.12.4
│   │   │   │               ├── proc-macro2 v1.0.25 (*)
│   │   │   │               ├── quote v1.0.9 (*)
│   │   │   │               ├── syn v1.0.65 (*)
│   │   │   │               └── unicode-xid v0.2.1
│   │   │   ├── ed25519 v1.0.3
│   │   │   │   └── signature v1.3.0
│   │   │   ├── rand v0.7.3 (*)
│   │   │   ├── serde v1.0.125 (*)
│   │   │   ├── sha2 v0.9.3
│   │   │   │   ├── block-buffer v0.9.0
│   │   │   │   │   └── generic-array v0.14.4 (*)
│   │   │   │   ├── cfg-if v1.0.0
│   │   │   │   ├── cpuid-bool v0.1.2
│   │   │   │   ├── digest v0.9.0 (*)
│   │   │   │   └── opaque-debug v0.3.0
│   │   │   └── zeroize v1.2.0 (*)
│   │   ├── log v0.4.14 (*)
│   │   ├── rand v0.7.3 (*)
│   │   └── signatory v0.21.0
│   │       ├── getrandom v0.1.16 (*)
│   │       ├── signature v1.3.0
│   │       ├── subtle-encoding v0.5.1
│   │       │   └── zeroize v1.2.0 (*)
│   │       └── zeroize v1.2.0 (*)
│   ├── nuid v0.2.2
│   │   ├── lazy_static v1.4.0 (*)
│   │   └── rand v0.7.3 (*)
│   ├── once_cell v1.7.2
│   ├── parking_lot v0.11.1 (*)
│   ├── regex v1.4.5 (*)
│   ├── rustls v0.19.0
│   │   ├── base64 v0.13.0
│   │   ├── log v0.4.14 (*)
│   │   ├── ring v0.16.20
│   │   │   ├── libc v0.2.92
│   │   │   ├── once_cell v1.7.2
│   │   │   ├── spin v0.5.2
│   │   │   └── untrusted v0.7.1
│   │   │   [build-dependencies]
│   │   │   └── cc v1.0.67 (*)
│   │   ├── sct v0.6.0
│   │   │   ├── ring v0.16.20 (*)
│   │   │   └── untrusted v0.7.1
│   │   └── webpki v0.21.4
│   │       ├── ring v0.16.20 (*)
│   │       └── untrusted v0.7.1
│   ├── rustls-native-certs v0.5.0
│   │   ├── openssl-probe v0.1.2
│   │   └── rustls v0.19.0 (*)
│   └── webpki v0.21.4 (*)
├── ndarray v0.14.0
│   ├── matrixmultiply v0.2.4
│   │   └── rawpointer v0.2.1
│   ├── num-complex v0.3.1 (*)
│   ├── num-integer v0.1.44 (*)
│   ├── num-traits v0.2.14 (*)
│   └── rawpointer v0.2.1
├── nom v6.1.2 (*)
├── nom-derive v0.7.1 (proc-macro)
│   ├── proc-macro2 v1.0.25 (*)
│   ├── quote v1.0.9 (*)
│   └── syn v1.0.65 (*)
├── nom-supreme v0.4.2
│   ├── cascade v1.0.0
│   ├── indent_write v2.1.0
│   ├── joinery v2.0.0
│   ├── memchr v2.3.4
│   └── nom v6.1.2 (*)
├── notify v4.0.15
│   ├── bitflags v1.2.1
│   ├── filetime v0.2.14 (*)
│   ├── inotify v0.7.1
│   │   ├── bitflags v1.2.1
│   │   ├── inotify-sys v0.1.5 (*)
│   │   └── libc v0.2.92
│   ├── libc v0.2.92
│   ├── mio v0.6.23 (*)
│   ├── mio-extras v2.0.6 (*)
│   └── walkdir v2.3.2 (*)
├── num v0.4.0
│   ├── num-bigint v0.4.0
│   │   ├── num-integer v0.1.44 (*)
│   │   └── num-traits v0.2.14 (*)
│   │   [build-dependencies]
│   │   └── autocfg v1.0.1
│   ├── num-complex v0.4.0
│   │   └── num-traits v0.2.14 (*)
│   ├── num-integer v0.1.44 (*)
│   ├── num-iter v0.1.42 (*)
│   ├── num-rational v0.4.0
│   │   ├── num-bigint v0.4.0 (*)
│   │   ├── num-integer v0.1.44 (*)
│   │   └── num-traits v0.2.14 (*)
│   │   [build-dependencies]
│   │   └── autocfg v1.0.1
│   └── num-traits v0.2.14 (*)
├── num_cpus v1.13.0 (*)
├── packet v0.1.4
│   ├── bitflags v1.2.1
│   ├── byteorder v1.3.4
│   ├── hwaddr v0.1.7
│   │   └── phf v0.8.0
│   │       └── phf_shared v0.8.0
│   │           └── siphasher v0.3.5
│   └── thiserror v1.0.24 (*)
├── paw v1.0.0
│   ├── paw-attributes v1.0.2 (proc-macro)
│   │   ├── proc-macro2 v1.0.25 (*)
│   │   ├── quote v1.0.9 (*)
│   │   └── syn v1.0.65 (*)
│   └── paw-raw v1.0.0
├── pom v3.2.0
├── rand v0.8.3
│   ├── libc v0.2.92
│   ├── rand_chacha v0.3.0
│   │   ├── ppv-lite86 v0.2.10
│   │   └── rand_core v0.6.2
│   │       └── getrandom v0.2.2 (*)
│   └── rand_core v0.6.2 (*)
├── rand_distr v0.4.0
│   ├── num-traits v0.2.14 (*)
│   └── rand v0.8.3 (*)
├── rayon v1.5.0 (*)
├── regex v1.4.5 (*)
├── ring v0.16.20 (*)
├── ron v0.6.4 (*)
├── rusqlite v0.24.2
│   ├── bitflags v1.2.1
│   ├── fallible-iterator v0.2.0
│   ├── fallible-streaming-iterator v0.1.9
│   ├── hashlink v0.6.0
│   │   └── hashbrown v0.9.1 (*)
│   ├── libsqlite3-sys v0.20.1
│   │   [build-dependencies]
│   │   ├── cc v1.0.67 (*)
│   │   └── pkg-config v0.3.19
│   ├── memchr v2.3.4
│   └── smallvec v1.6.1 (*)
├── same-file v1.0.6
├── sdl2 v0.34.3
│   ├── bitflags v1.2.1
│   ├── c_vec v1.3.3
│   ├── lazy_static v1.4.0 (*)
│   ├── libc v0.2.92
│   └── sdl2-sys v0.34.3
│       └── libc v0.2.92
│       [build-dependencies]
│       ├── cfg-if v0.1.10
│       └── version-compare v0.0.10
├── select v0.5.0
│   ├── bit-set v0.5.2 (*)
│   ├── html5ever v0.25.1
│   │   ├── log v0.4.14 (*)
│   │   ├── mac v0.1.1
│   │   └── markup5ever v0.10.0
│   │       ├── log v0.4.14 (*)
│   │       ├── phf v0.8.0 (*)
│   │       ├── string_cache v0.8.1
│   │       │   ├── lazy_static v1.4.0 (*)
│   │       │   ├── new_debug_unreachable v1.0.4
│   │       │   ├── phf_shared v0.8.0 (*)
│   │       │   ├── precomputed-hash v0.1.1
│   │       │   └── serde v1.0.125 (*)
│   │       └── tendril v0.4.2
│   │           ├── futf v0.1.4
│   │           │   ├── mac v0.1.1
│   │           │   └── new_debug_unreachable v1.0.4
│   │           ├── mac v0.1.1
│   │           └── utf-8 v0.7.5
│   │       [build-dependencies]
│   │       ├── phf_codegen v0.8.0
│   │       │   ├── phf_generator v0.8.0
│   │       │   │   ├── phf_shared v0.8.0 (*)
│   │       │   │   └── rand v0.7.3 (*)
│   │       │   └── phf_shared v0.8.0 (*)
│   │       ├── serde v1.0.125 (*)
│   │       ├── serde_derive v1.0.125 (proc-macro) (*)
│   │       ├── serde_json v1.0.64 (*)
│   │       └── string_cache_codegen v0.5.1
│   │           ├── phf_generator v0.8.0 (*)
│   │           ├── phf_shared v0.8.0 (*)
│   │           ├── proc-macro2 v1.0.25 (*)
│   │           └── quote v1.0.9 (*)
│   │   [build-dependencies]
│   │   ├── proc-macro2 v1.0.25 (*)
│   │   ├── quote v1.0.9 (*)
│   │   └── syn v1.0.65 (*)
│   └── markup5ever_rcdom v0.1.0
│       ├── html5ever v0.25.1 (*)
│       ├── markup5ever v0.10.0 (*)
│       ├── tendril v0.4.2 (*)
│       └── xml5ever v0.16.1
│           ├── log v0.4.14 (*)
│           ├── mac v0.1.1
│           ├── markup5ever v0.10.0 (*)
│           └── time v0.1.44 (*)
├── semver v0.11.0
│   └── semver-parser v0.10.2
│       └── pest v2.1.3
│           └── ucd-trie v0.1.3
├── serde v1.0.125 (*)
├── serde_json v1.0.64 (*)
├── slab v0.4.2
├── slotmap v1.0.2
│   [build-dependencies]
│   └── version_check v0.9.3
├── sqlx v0.5.1
│   ├── sqlx-core v0.5.1
│   │   ├── ahash v0.6.3 (*)
│   │   ├── atoi v0.4.0
│   │   │   └── num-traits v0.2.14 (*)
│   │   ├── base64 v0.13.0
│   │   ├── bitflags v1.2.1
│   │   ├── byteorder v1.3.4
│   │   ├── bytes v1.0.1
│   │   ├── crc v1.8.1
│   │   │   [build-dependencies]
│   │   │   └── build_const v0.2.1
│   │   ├── crossbeam-channel v0.5.0 (*)
│   │   ├── crossbeam-queue v0.3.1 (*)
│   │   ├── crossbeam-utils v0.8.3 (*)
│   │   ├── digest v0.9.0 (*)
│   │   ├── either v1.6.1
│   │   ├── futures-channel v0.3.13 (*)
│   │   ├── futures-core v0.3.13
│   │   ├── futures-util v0.3.13 (*)
│   │   ├── generic-array v0.14.4 (*)
│   │   ├── hashlink v0.6.0 (*)
│   │   ├── hex v0.4.3
│   │   ├── itoa v0.4.7
│   │   ├── libc v0.2.92
│   │   ├── libsqlite3-sys v0.20.1 (*)
│   │   ├── log v0.4.14 (*)
│   │   ├── memchr v2.3.4
│   │   ├── num-bigint v0.3.2
│   │   │   ├── num-integer v0.1.44 (*)
│   │   │   └── num-traits v0.2.14 (*)
│   │   │   [build-dependencies]
│   │   │   └── autocfg v1.0.1
│   │   ├── once_cell v1.7.2
│   │   ├── parking_lot v0.11.1 (*)
│   │   ├── percent-encoding v2.1.0
│   │   ├── rand v0.7.3 (*)
│   │   ├── rsa v0.3.0
│   │   │   ├── byteorder v1.3.4
│   │   │   ├── digest v0.9.0 (*)
│   │   │   ├── lazy_static v1.4.0 (*)
│   │   │   ├── num-bigint-dig v0.6.1
│   │   │   │   ├── byteorder v1.3.4
│   │   │   │   ├── lazy_static v1.4.0 (*)
│   │   │   │   ├── libm v0.2.1
│   │   │   │   ├── num-integer v0.1.44 (*)
│   │   │   │   ├── num-iter v0.1.42 (*)
│   │   │   │   ├── num-traits v0.2.14 (*)
│   │   │   │   ├── rand v0.7.3 (*)
│   │   │   │   ├── serde v1.0.125 (*)
│   │   │   │   ├── smallvec v1.6.1 (*)
│   │   │   │   └── zeroize v1.2.0 (*)
│   │   │   │   [build-dependencies]
│   │   │   │   └── autocfg v0.1.7
│   │   │   ├── num-integer v0.1.44 (*)
│   │   │   ├── num-iter v0.1.42 (*)
│   │   │   ├── num-traits v0.2.14 (*)
│   │   │   ├── pem v0.8.3
│   │   │   │   ├── base64 v0.13.0
│   │   │   │   ├── once_cell v1.7.2
│   │   │   │   └── regex v1.4.5 (*)
│   │   │   ├── rand v0.7.3 (*)
│   │   │   ├── sha2 v0.9.3 (*)
│   │   │   ├── simple_asn1 v0.4.1
│   │   │   │   ├── chrono v0.4.19 (*)
│   │   │   │   ├── num-bigint v0.2.6
│   │   │   │   │   ├── num-integer v0.1.44 (*)
│   │   │   │   │   └── num-traits v0.2.14 (*)
│   │   │   │   │   [build-dependencies]
│   │   │   │   │   └── autocfg v1.0.1
│   │   │   │   └── num-traits v0.2.14 (*)
│   │   │   ├── subtle v2.4.0
│   │   │   ├── thiserror v1.0.24 (*)
│   │   │   └── zeroize v1.2.0 (*)
│   │   ├── sha-1 v0.9.4
│   │   │   ├── block-buffer v0.9.0 (*)
│   │   │   ├── cfg-if v1.0.0
│   │   │   ├── cpuid-bool v0.1.2
│   │   │   ├── digest v0.9.0 (*)
│   │   │   └── opaque-debug v0.3.0
│   │   ├── sha2 v0.9.3 (*)
│   │   ├── smallvec v1.6.1 (*)
│   │   ├── sqlformat v0.1.6
│   │   │   ├── lazy_static v1.4.0 (*)
│   │   │   ├── maplit v1.0.2
│   │   │   ├── nom v6.1.2 (*)
│   │   │   ├── regex v1.4.5 (*)
│   │   │   └── unicode_categories v0.1.1
│   │   ├── sqlx-rt v0.3.0
│   │   │   ├── async-native-tls v0.3.3
│   │   │   │   ├── async-std v1.9.0 (*)
│   │   │   │   ├── native-tls v0.2.7
│   │   │   │   │   ├── log v0.4.14 (*)
│   │   │   │   │   ├── openssl v0.10.33
│   │   │   │   │   │   ├── bitflags v1.2.1
│   │   │   │   │   │   ├── cfg-if v1.0.0
│   │   │   │   │   │   ├── foreign-types v0.3.2
│   │   │   │   │   │   │   └── foreign-types-shared v0.1.1
│   │   │   │   │   │   ├── libc v0.2.92
│   │   │   │   │   │   ├── once_cell v1.7.2
│   │   │   │   │   │   └── openssl-sys v0.9.61
│   │   │   │   │   │       └── libc v0.2.92
│   │   │   │   │   │       [build-dependencies]
│   │   │   │   │   │       ├── autocfg v1.0.1
│   │   │   │   │   │       ├── cc v1.0.67 (*)
│   │   │   │   │   │       └── pkg-config v0.3.19
│   │   │   │   │   ├── openssl-probe v0.1.2
│   │   │   │   │   └── openssl-sys v0.9.61 (*)
│   │   │   │   ├── thiserror v1.0.24 (*)
│   │   │   │   └── url v2.2.1
│   │   │   │       ├── form_urlencoded v1.0.1
│   │   │   │       │   ├── matches v0.1.8
│   │   │   │       │   └── percent-encoding v2.1.0
│   │   │   │       ├── idna v0.2.2
│   │   │   │       │   ├── matches v0.1.8
│   │   │   │       │   ├── unicode-bidi v0.3.4
│   │   │   │       │   │   └── matches v0.1.8
│   │   │   │       │   └── unicode-normalization v0.1.17
│   │   │   │       │       └── tinyvec v1.1.1
│   │   │   │       │           └── tinyvec_macros v0.1.0
│   │   │   │       ├── matches v0.1.8
│   │   │   │       ├── percent-encoding v2.1.0
│   │   │   │       └── serde v1.0.125 (*)
│   │   │   ├── async-std v1.9.0 (*)
│   │   │   └── native-tls v0.2.7 (*)
│   │   ├── stringprep v0.1.2
│   │   │   ├── unicode-bidi v0.3.4 (*)
│   │   │   └── unicode-normalization v0.1.17 (*)
│   │   ├── thiserror v1.0.24 (*)
│   │   ├── url v2.2.1 (*)
│   │   └── whoami v1.1.1
│   └── sqlx-macros v0.5.1 (proc-macro)
│       ├── dotenv v0.15.0
│       ├── either v1.6.1
│       ├── futures v0.3.13 (*)
│       ├── heck v0.3.2 (*)
│       ├── proc-macro2 v1.0.25 (*)
│       ├── quote v1.0.9 (*)
│       ├── sha2 v0.9.3 (*)
│       ├── sqlx-core v0.5.1 (*)
│       ├── sqlx-rt v0.3.0 (*)
│       ├── syn v1.0.65 (*)
│       └── url v2.2.1 (*)
├── structopt v0.3.21
│   ├── clap v2.33.3
│   │   ├── ansi_term v0.11.0
│   │   ├── atty v0.2.14 (*)
│   │   ├── bitflags v1.2.1
│   │   ├── strsim v0.8.0
│   │   ├── textwrap v0.11.0
│   │   │   └── unicode-width v0.1.8
│   │   ├── unicode-width v0.1.8
│   │   └── vec_map v0.8.2
│   ├── lazy_static v1.4.0 (*)
│   └── structopt-derive v0.4.14 (proc-macro)
│       ├── heck v0.3.2 (*)
│       ├── proc-macro-error v1.0.4 (*)
│       ├── proc-macro2 v1.0.25 (*)
│       ├── quote v1.0.9 (*)
│       └── syn v1.0.65 (*)
├── surf v2.2.0
│   ├── async-std v1.9.0 (*)
│   ├── async-trait v0.1.48 (proc-macro)
│   │   ├── proc-macro2 v1.0.25 (*)
│   │   ├── quote v1.0.9 (*)
│   │   └── syn v1.0.65 (*)
│   ├── cfg-if v1.0.0
│   ├── encoding_rs v0.8.28
│   │   └── cfg-if v1.0.0
│   ├── futures-util v0.3.13 (*)
│   ├── http-client v6.3.5
│   │   ├── async-std v1.9.0 (*)
│   │   ├── async-trait v0.1.48 (proc-macro) (*)
│   │   ├── cfg-if v1.0.0
│   │   ├── dashmap v4.0.2
│   │   │   ├── cfg-if v1.0.0
│   │   │   └── num_cpus v1.13.0 (*)
│   │   ├── http-types v2.10.0
│   │   │   ├── anyhow v1.0.40
│   │   │   ├── async-channel v1.6.1 (*)
│   │   │   ├── async-std v1.9.0 (*)
│   │   │   ├── base64 v0.13.0
│   │   │   ├── cookie v0.14.4
│   │   │   │   ├── aes-gcm v0.8.0
│   │   │   │   │   ├── aead v0.3.2
│   │   │   │   │   │   └── generic-array v0.14.4 (*)
│   │   │   │   │   ├── aes v0.6.0
│   │   │   │   │   │   ├── aes-soft v0.6.4
│   │   │   │   │   │   │   ├── cipher v0.2.5 (*)
│   │   │   │   │   │   │   └── opaque-debug v0.3.0
│   │   │   │   │   │   └── cipher v0.2.5 (*)
│   │   │   │   │   ├── cipher v0.2.5 (*)
│   │   │   │   │   ├── ctr v0.6.0
│   │   │   │   │   │   └── cipher v0.2.5 (*)
│   │   │   │   │   ├── ghash v0.3.1
│   │   │   │   │   │   ├── opaque-debug v0.3.0
│   │   │   │   │   │   └── polyval v0.4.5
│   │   │   │   │   │       ├── cpuid-bool v0.2.0
│   │   │   │   │   │       ├── opaque-debug v0.3.0
│   │   │   │   │   │       └── universal-hash v0.4.0
│   │   │   │   │   │           ├── generic-array v0.14.4 (*)
│   │   │   │   │   │           └── subtle v2.4.0
│   │   │   │   │   └── subtle v2.4.0
│   │   │   │   ├── base64 v0.13.0
│   │   │   │   ├── hkdf v0.10.0
│   │   │   │   │   ├── digest v0.9.0 (*)
│   │   │   │   │   └── hmac v0.10.1
│   │   │   │   │       ├── crypto-mac v0.10.0
│   │   │   │   │       │   ├── generic-array v0.14.4 (*)
│   │   │   │   │       │   └── subtle v2.4.0
│   │   │   │   │       └── digest v0.9.0 (*)
│   │   │   │   ├── hmac v0.10.1 (*)
│   │   │   │   ├── percent-encoding v2.1.0
│   │   │   │   ├── rand v0.8.3 (*)
│   │   │   │   ├── sha2 v0.9.3 (*)
│   │   │   │   └── time v0.2.26
│   │   │   │       ├── const_fn v0.4.6 (proc-macro)
│   │   │   │       ├── libc v0.2.92
│   │   │   │       ├── standback v0.2.17
│   │   │   │       │   [build-dependencies]
│   │   │   │       │   └── version_check v0.9.3
│   │   │   │       └── time-macros v0.1.1
│   │   │   │           ├── proc-macro-hack v0.5.19 (proc-macro)
│   │   │   │           └── time-macros-impl v0.1.1 (proc-macro)
│   │   │   │               ├── proc-macro-hack v0.5.19 (proc-macro)
│   │   │   │               ├── proc-macro2 v1.0.25 (*)
│   │   │   │               ├── quote v1.0.9 (*)
│   │   │   │               ├── standback v0.2.17 (*)
│   │   │   │               └── syn v1.0.65 (*)
│   │   │   │       [build-dependencies]
│   │   │   │       └── version_check v0.9.3
│   │   │   │   [build-dependencies]
│   │   │   │   └── version_check v0.9.3
│   │   │   ├── futures-lite v1.11.3 (*)
│   │   │   ├── infer v0.2.3
│   │   │   ├── pin-project-lite v0.2.6
│   │   │   ├── rand v0.7.3 (*)
│   │   │   ├── serde v1.0.125 (*)
│   │   │   ├── serde_json v1.0.64 (*)
│   │   │   ├── serde_qs v0.7.2
│   │   │   │   ├── data-encoding v2.3.2
│   │   │   │   ├── percent-encoding v2.1.0
│   │   │   │   ├── serde v1.0.125 (*)
│   │   │   │   └── thiserror v1.0.24 (*)
│   │   │   ├── serde_urlencoded v0.7.0
│   │   │   │   ├── form_urlencoded v1.0.1 (*)
│   │   │   │   ├── itoa v0.4.7
│   │   │   │   ├── ryu v1.0.5
│   │   │   │   └── serde v1.0.125 (*)
│   │   │   └── url v2.2.1 (*)
│   │   ├── isahc v0.9.14
│   │   │   ├── bytes v0.5.6
│   │   │   ├── crossbeam-utils v0.8.3 (*)
│   │   │   ├── curl v0.4.35
│   │   │   │   ├── curl-sys v0.4.41+curl-7.75.0
│   │   │   │   │   ├── libc v0.2.92
│   │   │   │   │   ├── libnghttp2-sys v0.1.6+1.43.0
│   │   │   │   │   │   └── libc v0.2.92
│   │   │   │   │   │   [build-dependencies]
│   │   │   │   │   │   └── cc v1.0.67 (*)
│   │   │   │   │   ├── libz-sys v1.1.2
│   │   │   │   │   │   └── libc v0.2.92
│   │   │   │   │   │   [build-dependencies]
│   │   │   │   │   │   ├── cc v1.0.67 (*)
│   │   │   │   │   │   └── pkg-config v0.3.19
│   │   │   │   │   └── openssl-sys v0.9.61 (*)
│   │   │   │   │   [build-dependencies]
│   │   │   │   │   ├── cc v1.0.67 (*)
│   │   │   │   │   └── pkg-config v0.3.19
│   │   │   │   ├── libc v0.2.92
│   │   │   │   ├── openssl-probe v0.1.2
│   │   │   │   ├── openssl-sys v0.9.61 (*)
│   │   │   │   └── socket2 v0.3.19
│   │   │   │       ├── cfg-if v1.0.0
│   │   │   │       └── libc v0.2.92
│   │   │   ├── curl-sys v0.4.41+curl-7.75.0 (*)
│   │   │   ├── flume v0.9.2
│   │   │   │   ├── futures-core v0.3.13
│   │   │   │   ├── futures-sink v0.3.13
│   │   │   │   └── spinning_top v0.2.2
│   │   │   │       └── lock_api v0.4.2 (*)
│   │   │   ├── futures-lite v1.11.3 (*)
│   │   │   ├── http v0.2.3
│   │   │   │   ├── bytes v1.0.1
│   │   │   │   ├── fnv v1.0.7
│   │   │   │   └── itoa v0.4.7
│   │   │   ├── log v0.4.14 (*)
│   │   │   ├── once_cell v1.7.2
│   │   │   ├── slab v0.4.2
│   │   │   ├── sluice v0.5.4
│   │   │   │   ├── futures-channel v0.3.13 (*)
│   │   │   │   ├── futures-core v0.3.13
│   │   │   │   └── futures-io v0.3.13
│   │   │   ├── tracing v0.1.25 (*)
│   │   │   ├── tracing-futures v0.2.5
│   │   │   │   ├── pin-project v1.0.6
│   │   │   │   │   └── pin-project-internal v1.0.6 (proc-macro)
│   │   │   │   │       ├── proc-macro2 v1.0.25 (*)
│   │   │   │   │       ├── quote v1.0.9 (*)
│   │   │   │   │       └── syn v1.0.65 (*)
│   │   │   │   └── tracing v0.1.25 (*)
│   │   │   ├── url v2.2.1 (*)
│   │   │   └── waker-fn v1.1.0
│   │   └── log v0.4.14 (*)
│   ├── http-types v2.10.0 (*)
│   ├── log v0.4.14 (*)
│   ├── mime_guess v2.0.3
│   │   ├── mime v0.3.16
│   │   └── unicase v2.6.0
│   │       [build-dependencies]
│   │       └── version_check v0.9.3
│   │   [build-dependencies]
│   │   └── unicase v2.6.0 (*)
│   ├── once_cell v1.7.2
│   ├── pin-project-lite v0.2.6
│   ├── serde v1.0.125 (*)
│   └── serde_json v1.0.64 (*)
├── syslog v5.0.0
│   ├── error-chain v0.12.4
│   │   [build-dependencies]
│   │   └── version_check v0.9.3
│   ├── libc v0.2.92
│   ├── log v0.4.14 (*)
│   └── time v0.1.44 (*)
├── tar v0.4.33
│   ├── filetime v0.2.14 (*)
│   ├── libc v0.2.92
│   └── xattr v0.2.2
│       └── libc v0.2.92
├── tempdir v0.3.7
│   ├── rand v0.4.6
│   │   └── libc v0.2.92
│   └── remove_dir_all v0.5.3
├── threadpool v1.8.1
│   └── num_cpus v1.13.0 (*)
├── tide v0.16.0
│   ├── async-h1 v2.3.2
│   │   ├── async-channel v1.6.1 (*)
│   │   ├── async-dup v1.2.2
│   │   │   ├── futures-io v0.3.13
│   │   │   └── simple-mutex v1.1.5
│   │   │       └── event-listener v2.5.1
│   │   ├── async-std v1.9.0 (*)
│   │   ├── byte-pool v0.2.3
│   │   │   ├── crossbeam-queue v0.3.1 (*)
│   │   │   └── stable_deref_trait v1.2.0
│   │   ├── futures-core v0.3.13
│   │   ├── http-types v2.10.0 (*)
│   │   ├── httparse v1.3.5
│   │   ├── lazy_static v1.4.0 (*)
│   │   ├── log v0.4.14 (*)
│   │   └── pin-project v1.0.6 (*)
│   ├── async-session v2.0.1
│   │   ├── anyhow v1.0.40
│   │   ├── async-std v1.9.0 (*)
│   │   ├── async-trait v0.1.48 (proc-macro) (*)
│   │   ├── base64 v0.12.3
│   │   ├── bincode v1.3.2 (*)
│   │   ├── blake3 v0.3.7
│   │   │   ├── arrayref v0.3.6
│   │   │   ├── arrayvec v0.5.2
│   │   │   ├── cfg-if v0.1.10
│   │   │   ├── constant_time_eq v0.1.5
│   │   │   ├── crypto-mac v0.8.0
│   │   │   │   ├── generic-array v0.14.4 (*)
│   │   │   │   └── subtle v2.4.0
│   │   │   └── digest v0.9.0 (*)
│   │   │   [build-dependencies]
│   │   │   └── cc v1.0.67 (*)
│   │   ├── chrono v0.4.19 (*)
│   │   ├── hmac v0.8.1
│   │   │   ├── crypto-mac v0.8.0 (*)
│   │   │   └── digest v0.9.0 (*)
│   │   ├── kv-log-macro v1.0.7 (*)
│   │   ├── rand v0.7.3 (*)
│   │   ├── serde v1.0.125 (*)
│   │   ├── serde_json v1.0.64 (*)
│   │   └── sha2 v0.9.3 (*)
│   ├── async-sse v4.1.0
│   │   ├── async-channel v1.6.1 (*)
│   │   ├── async-std v1.9.0 (*)
│   │   ├── http-types v2.10.0 (*)
│   │   ├── log v0.4.14 (*)
│   │   ├── memchr v2.3.4
│   │   └── pin-project-lite v0.1.12
│   ├── async-std v1.9.0 (*)
│   ├── async-trait v0.1.48 (proc-macro) (*)
│   ├── femme v2.1.1
│   │   ├── cfg-if v0.1.10
│   │   ├── log v0.4.14 (*)
│   │   ├── serde v1.0.125 (*)
│   │   ├── serde_derive v1.0.125 (proc-macro) (*)
│   │   └── serde_json v1.0.64 (*)
│   ├── futures-util v0.3.13 (*)
│   ├── http-client v6.3.5 (*)
│   ├── http-types v2.10.0 (*)
│   ├── kv-log-macro v1.0.7 (*)
│   ├── log v0.4.14 (*)
│   ├── pin-project-lite v0.2.6
│   ├── route-recognizer v0.2.0
│   ├── serde v1.0.125 (*)
│   └── serde_json v1.0.64 (*)
├── tokio v1.4.0
│   ├── bytes v1.0.1
│   ├── libc v0.2.92
│   ├── memchr v2.3.4
│   ├── mio v0.7.11 (*)
│   ├── num_cpus v1.13.0 (*)
│   ├── once_cell v1.7.2
│   ├── parking_lot v0.11.1 (*)
│   ├── pin-project-lite v0.2.6
│   ├── signal-hook-registry v1.3.0 (*)
│   └── tokio-macros v1.1.0 (proc-macro)
│       ├── proc-macro2 v1.0.25 (*)
│       ├── quote v1.0.9 (*)
│       └── syn v1.0.65 (*)
│   [build-dependencies]
│   └── autocfg v1.0.1
├── tokio-stream v0.1.5
│   ├── futures-core v0.3.13
│   ├── pin-project-lite v0.2.6
│   └── tokio v1.4.0 (*)
├── tokio-util v0.6.5
│   ├── bytes v1.0.1
│   ├── futures-core v0.3.13
│   ├── futures-io v0.3.13
│   ├── futures-sink v0.3.13
│   ├── log v0.4.14 (*)
│   ├── pin-project-lite v0.2.6
│   ├── slab v0.4.2
│   └── tokio v1.4.0 (*)
├── toml v0.5.8 (*)
├── trust-dns-proto v0.20.1
│   ├── async-trait v0.1.48 (proc-macro) (*)
│   ├── cfg-if v1.0.0
│   ├── data-encoding v2.3.2
│   ├── enum-as-inner v0.3.3 (proc-macro)
│   │   ├── heck v0.3.2 (*)
│   │   ├── proc-macro2 v1.0.25 (*)
│   │   ├── quote v1.0.9 (*)
│   │   └── syn v1.0.65 (*)
│   ├── futures-channel v0.3.13 (*)
│   ├── futures-io v0.3.13
│   ├── futures-util v0.3.13 (*)
│   ├── idna v0.2.2 (*)
│   ├── ipnet v2.3.0
│   ├── lazy_static v1.4.0 (*)
│   ├── log v0.4.14 (*)
│   ├── rand v0.8.3 (*)
│   ├── smallvec v1.6.1 (*)
│   ├── thiserror v1.0.24 (*)
│   ├── tinyvec v1.1.1 (*)
│   ├── tokio v1.4.0 (*)
│   └── url v2.2.1 (*)
├── url v2.2.1 (*)
├── walkdir v2.3.2 (*)
├── xactor v0.7.11
│   ├── anyhow v1.0.40
│   ├── async-std v1.9.0 (*)
│   ├── async-trait v0.1.48 (proc-macro) (*)
│   ├── fnv v1.0.7
│   ├── futures v0.3.13 (*)
│   ├── once_cell v1.7.2
│   ├── slab v0.4.2
│   └── xactor-derive v0.7.1 (proc-macro)
│       ├── proc-macro2 v1.0.25 (*)
│       ├── quote v1.0.9 (*)
│       └── syn v1.0.65 (*)
└── zerocopy v0.4.0
    ├── byteorder v1.3.4
    └── zerocopy-derive v0.2.0 (proc-macro)
        ├── proc-macro2 v1.0.25 (*)
        ├── syn v1.0.65 (*)
        └── synstructure v0.12.4 (*)