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
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
// Code automatically generated by `shadow-rs` (https://github.com/baoyachi/shadow-rs), do not edit.
// Author: https://www.github.com/baoyachi
// Generation time: 2024-12-05 20:38:26 +00:00



#[doc=r#"
The name of the Git branch that this project was built from.

This constant will be empty if the branch cannot be determined."#]
#[allow(dead_code)]
#[allow(clippy::all)]
pub const BRANCH :&str = r#"main"#;

#[doc=r#"
Operating system and architecture on which the project was build.
The format of this variable is always `os-arch`,
where `os` is the operating system name as returned by [`std::env::consts::OS`],
and `arch` is the computer architecture as returned by [`std::env::consts::ARCH`]."#]
#[allow(dead_code)]
#[allow(clippy::all)]
pub const BUILD_OS :&str = r#"linux-x86_64"#;

#[doc=r#"
The debug configuration with which the project was built.
Note that this is not the Rust channel, but either `debug` or `release`, depending on whether debug assertions were enabled in the build or not. "#]
#[allow(dead_code)]
#[allow(clippy::all)]
pub const BUILD_RUST_CHANNEL :&str = r#"debug"#;

#[doc=r#"
The [target](https://doc.rust-lang.org/rustc/targets/index.html) for this build.
This is possibly distinct from the host target during build, in which case this project build was created via cross-compilation."#]
#[allow(dead_code)]
#[allow(clippy::all)]
pub const BUILD_TARGET :&str = r#"x86_64-unknown-linux-gnu"#;

#[doc=r#"
The architecture of the target for this build. This is the "architecture" part of the [`BUILD_TARGET`] constant."#]
#[allow(dead_code)]
#[allow(clippy::all)]
pub const BUILD_TARGET_ARCH :&str = r#"x86_64"#;

#[doc=r#"
The project build time, formatted in modified ISO 8601 format (`YYYY-MM-DD HH-MM ±hh-mm` where hh-mm is the offset from UTC)."#]
#[allow(dead_code)]
#[allow(clippy::all)]
pub const BUILD_TIME :&str = r#"2024-12-05 20:38:25 +00:00"#;

#[doc=r#"
The project build time, formatted according to [RFC 2822](https://datatracker.ietf.org/doc/html/rfc2822#section-3.3) (e.g. HTTP Headers)."#]
#[allow(dead_code)]
#[allow(clippy::all)]
pub const BUILD_TIME_2822 :&str = r#"Thu, 05 Dec 2024 20:38:25 +0000"#;

#[doc=r#"
The project build time, formatted according to [RFC 3339 and ISO 8601](https://datatracker.ietf.org/doc/html/rfc3339#section-5.6)."#]
#[allow(dead_code)]
#[allow(clippy::all)]
pub const BUILD_TIME_3339 :&str = r#"2024-12-05T20:38:25Z"#;

#[doc=r#"
The directory of the Cargo.toml manifest file of the project during build.
Note that this variable will contain a full local file system path, and will therefore contain sensitive information and not be reproducible."#]
#[allow(dead_code)]
#[allow(clippy::all)]
pub const CARGO_MANIFEST_DIR :&str = r#"/home/runner/work/jumpy/jumpy"#;

#[doc=r#"
The dependency tree of the project, as output by `cargo tree`.
Note that this variable may contain local file system paths for path dependencies, and may therefore contain sensitive information and not be reproducible."#]
#[allow(dead_code)]
#[allow(clippy::all)]
pub const CARGO_TREE :&str = r#"
├── async-channel v1.9.0
│   ├── concurrent-queue v2.5.0
│   │   └── crossbeam-utils v0.8.20
│   ├── event-listener v2.5.3
│   └── futures-core v0.3.30
├── bevy_dylib v0.11.3
│   └── bevy_internal v0.11.3
│       ├── bevy_a11y v0.11.3
│       │   ├── accesskit v0.11.2
│       │   ├── bevy_app v0.11.3
│       │   │   ├── bevy_derive v0.11.3 (proc-macro)
│       │   │   │   ├── bevy_macro_utils v0.11.3
│       │   │   │   │   ├── quote v1.0.37
│       │   │   │   │   │   └── proc-macro2 v1.0.86
│       │   │   │   │   │       └── unicode-ident v1.0.13
│       │   │   │   │   ├── rustc-hash v1.1.0
│       │   │   │   │   ├── syn v2.0.79
│       │   │   │   │   │   ├── proc-macro2 v1.0.86 (*)
│       │   │   │   │   │   ├── quote v1.0.37 (*)
│       │   │   │   │   │   └── unicode-ident v1.0.13
│       │   │   │   │   └── toml_edit v0.19.15
│       │   │   │   │       ├── indexmap v2.5.0
│       │   │   │   │       │   ├── equivalent v1.0.1
│       │   │   │   │       │   └── hashbrown v0.14.5
│       │   │   │   │       ├── toml_datetime v0.6.8
│       │   │   │   │       └── winnow v0.5.40
│       │   │   │   ├── quote v1.0.37 (*)
│       │   │   │   └── syn v2.0.79 (*)
│       │   │   ├── bevy_ecs v0.11.3
│       │   │   │   ├── async-channel v1.9.0 (*)
│       │   │   │   ├── bevy_ecs_macros v0.11.3 (proc-macro)
│       │   │   │   │   ├── bevy_macro_utils v0.11.3 (*)
│       │   │   │   │   ├── proc-macro2 v1.0.86 (*)
│       │   │   │   │   ├── quote v1.0.37 (*)
│       │   │   │   │   └── syn v2.0.79 (*)
│       │   │   │   ├── bevy_ptr v0.11.3
│       │   │   │   ├── bevy_reflect v0.11.3
│       │   │   │   │   ├── bevy_math v0.11.3
│       │   │   │   │   │   ├── glam v0.24.2
│       │   │   │   │   │   │   ├── bytemuck v1.18.0
│       │   │   │   │   │   │   │   └── bytemuck_derive v1.7.1 (proc-macro)
│       │   │   │   │   │   │   │       ├── proc-macro2 v1.0.86 (*)
│       │   │   │   │   │   │   │       ├── quote v1.0.37 (*)
│       │   │   │   │   │   │   │       └── syn v2.0.79 (*)
│       │   │   │   │   │   │   └── serde v1.0.210
│       │   │   │   │   │   │       └── serde_derive v1.0.210 (proc-macro)
│       │   │   │   │   │   │           ├── proc-macro2 v1.0.86 (*)
│       │   │   │   │   │   │           ├── quote v1.0.37 (*)
│       │   │   │   │   │   │           └── syn v2.0.79 (*)
│       │   │   │   │   │   └── serde v1.0.210 (*)
│       │   │   │   │   ├── bevy_ptr v0.11.3
│       │   │   │   │   ├── bevy_reflect_derive v0.11.3 (proc-macro)
│       │   │   │   │   │   ├── bevy_macro_utils v0.11.3 (*)
│       │   │   │   │   │   ├── bit-set v0.5.3
│       │   │   │   │   │   │   └── bit-vec v0.6.3
│       │   │   │   │   │   ├── proc-macro2 v1.0.86 (*)
│       │   │   │   │   │   ├── quote v1.0.37 (*)
│       │   │   │   │   │   ├── syn v2.0.79 (*)
│       │   │   │   │   │   └── uuid v1.10.0
│       │   │   │   │   │       └── getrandom v0.2.15
│       │   │   │   │   │           ├── cfg-if v1.0.0
│       │   │   │   │   │           └── libc v0.2.159
│       │   │   │   │   ├── bevy_utils v0.11.3
│       │   │   │   │   │   ├── ahash v0.8.11
│       │   │   │   │   │   │   ├── cfg-if v1.0.0
│       │   │   │   │   │   │   ├── getrandom v0.2.15
│       │   │   │   │   │   │   │   ├── cfg-if v1.0.0
│       │   │   │   │   │   │   │   └── libc v0.2.159
│       │   │   │   │   │   │   ├── once_cell v1.19.0
│       │   │   │   │   │   │   ├── serde v1.0.210 (*)
│       │   │   │   │   │   │   └── zerocopy v0.7.35
│       │   │   │   │   │   │       ├── byteorder v1.5.0
│       │   │   │   │   │   │       └── zerocopy-derive v0.7.35 (proc-macro)
│       │   │   │   │   │   │           ├── proc-macro2 v1.0.86 (*)
│       │   │   │   │   │   │           ├── quote v1.0.37 (*)
│       │   │   │   │   │   │           └── syn v2.0.79 (*)
│       │   │   │   │   │   │   [build-dependencies]
│       │   │   │   │   │   │   └── version_check v0.9.5
│       │   │   │   │   │   ├── bevy_utils_proc_macros v0.11.3 (proc-macro)
│       │   │   │   │   │   │   ├── proc-macro2 v1.0.86 (*)
│       │   │   │   │   │   │   ├── quote v1.0.37 (*)
│       │   │   │   │   │   │   └── syn v2.0.79 (*)
│       │   │   │   │   │   ├── hashbrown v0.14.5
│       │   │   │   │   │   │   ├── ahash v0.8.11 (*)
│       │   │   │   │   │   │   ├── allocator-api2 v0.2.18
│       │   │   │   │   │   │   └── serde v1.0.210 (*)
│       │   │   │   │   │   ├── instant v0.1.13
│       │   │   │   │   │   │   └── cfg-if v1.0.0
│       │   │   │   │   │   ├── petgraph v0.6.5
│       │   │   │   │   │   │   ├── fixedbitset v0.4.2
│       │   │   │   │   │   │   └── indexmap v2.5.0 (*)
│       │   │   │   │   │   ├── thiserror v1.0.64
│       │   │   │   │   │   │   └── thiserror-impl v1.0.64 (proc-macro)
│       │   │   │   │   │   │       ├── proc-macro2 v1.0.86 (*)
│       │   │   │   │   │   │       ├── quote v1.0.37 (*)
│       │   │   │   │   │   │       └── syn v2.0.79 (*)
│       │   │   │   │   │   ├── tracing v0.1.40
│       │   │   │   │   │   │   ├── log v0.4.22
│       │   │   │   │   │   │   ├── pin-project-lite v0.2.14
│       │   │   │   │   │   │   ├── tracing-attributes v0.1.27 (proc-macro)
│       │   │   │   │   │   │   │   ├── proc-macro2 v1.0.86 (*)
│       │   │   │   │   │   │   │   ├── quote v1.0.37 (*)
│       │   │   │   │   │   │   │   └── syn v2.0.79 (*)
│       │   │   │   │   │   │   └── tracing-core v0.1.32
│       │   │   │   │   │   │       └── once_cell v1.19.0
│       │   │   │   │   │   └── uuid v1.10.0
│       │   │   │   │   │       ├── getrandom v0.2.15 (*)
│       │   │   │   │   │       └── serde v1.0.210 (*)
│       │   │   │   │   ├── downcast-rs v1.2.1
│       │   │   │   │   ├── erased-serde v0.3.31
│       │   │   │   │   │   └── serde v1.0.210 (*)
│       │   │   │   │   ├── glam v0.24.2 (*)
│       │   │   │   │   ├── once_cell v1.19.0
│       │   │   │   │   ├── parking_lot v0.12.3
│       │   │   │   │   │   ├── lock_api v0.4.12
│       │   │   │   │   │   │   └── scopeguard v1.2.0
│       │   │   │   │   │   │   [build-dependencies]
│       │   │   │   │   │   │   └── autocfg v1.4.0
│       │   │   │   │   │   └── parking_lot_core v0.9.10
│       │   │   │   │   │       ├── cfg-if v1.0.0
│       │   │   │   │   │       ├── libc v0.2.159
│       │   │   │   │   │       └── smallvec v1.13.2
│       │   │   │   │   │           └── serde v1.0.210 (*)
│       │   │   │   │   ├── serde v1.0.210 (*)
│       │   │   │   │   ├── smallvec v1.13.2 (*)
│       │   │   │   │   ├── smol_str v0.2.2
│       │   │   │   │   └── thiserror v1.0.64 (*)
│       │   │   │   ├── bevy_tasks v0.11.3
│       │   │   │   │   ├── async-channel v1.9.0 (*)
│       │   │   │   │   ├── async-executor v1.13.1
│       │   │   │   │   │   ├── async-task v4.7.1
│       │   │   │   │   │   ├── concurrent-queue v2.5.0 (*)
│       │   │   │   │   │   ├── fastrand v2.1.1
│       │   │   │   │   │   ├── futures-lite v2.3.0
│       │   │   │   │   │   │   ├── fastrand v2.1.1
│       │   │   │   │   │   │   ├── futures-core v0.3.30
│       │   │   │   │   │   │   ├── futures-io v0.3.30
│       │   │   │   │   │   │   ├── parking v2.2.1
│       │   │   │   │   │   │   └── pin-project-lite v0.2.14
│       │   │   │   │   │   └── slab v0.4.9
│       │   │   │   │   │       [build-dependencies]
│       │   │   │   │   │       └── autocfg v1.4.0
│       │   │   │   │   ├── async-task v4.7.1
│       │   │   │   │   ├── concurrent-queue v2.5.0 (*)
│       │   │   │   │   └── futures-lite v1.13.0
│       │   │   │   │       ├── fastrand v1.9.0
│       │   │   │   │       ├── futures-core v0.3.30
│       │   │   │   │       ├── futures-io v0.3.30
│       │   │   │   │       ├── memchr v2.7.4
│       │   │   │   │       ├── parking v2.2.1
│       │   │   │   │       ├── pin-project-lite v0.2.14
│       │   │   │   │       └── waker-fn v1.2.0
│       │   │   │   ├── bevy_utils v0.11.3 (*)
│       │   │   │   ├── downcast-rs v1.2.1
│       │   │   │   ├── event-listener v2.5.3
│       │   │   │   ├── fixedbitset v0.4.2
│       │   │   │   ├── rustc-hash v1.1.0
│       │   │   │   ├── serde v1.0.210 (*)
│       │   │   │   ├── thiserror v1.0.64 (*)
│       │   │   │   └── thread_local v1.1.8
│       │   │   │       ├── cfg-if v1.0.0
│       │   │   │       └── once_cell v1.19.0
│       │   │   ├── bevy_reflect v0.11.3 (*)
│       │   │   ├── bevy_tasks v0.11.3 (*)
│       │   │   ├── bevy_utils v0.11.3 (*)
│       │   │   └── downcast-rs v1.2.1
│       │   ├── bevy_derive v0.11.3 (proc-macro) (*)
│       │   └── bevy_ecs v0.11.3 (*)
│       ├── bevy_app v0.11.3 (*)
│       ├── bevy_asset v0.11.3
│       │   ├── anyhow v1.0.89
│       │   ├── async-channel v1.9.0 (*)
│       │   ├── bevy_app v0.11.3 (*)
│       │   ├── bevy_diagnostic v0.11.3
│       │   │   ├── bevy_app v0.11.3 (*)
│       │   │   ├── bevy_core v0.11.3
│       │   │   │   ├── bevy_app v0.11.3 (*)
│       │   │   │   ├── bevy_ecs v0.11.3 (*)
│       │   │   │   ├── bevy_math v0.11.3 (*)
│       │   │   │   ├── bevy_reflect v0.11.3 (*)
│       │   │   │   ├── bevy_tasks v0.11.3 (*)
│       │   │   │   ├── bevy_utils v0.11.3 (*)
│       │   │   │   └── bytemuck v1.18.0 (*)
│       │   │   ├── bevy_ecs v0.11.3 (*)
│       │   │   ├── bevy_log v0.11.3
│       │   │   │   ├── bevy_app v0.11.3 (*)
│       │   │   │   ├── bevy_ecs v0.11.3 (*)
│       │   │   │   ├── bevy_utils v0.11.3 (*)
│       │   │   │   ├── tracing-log v0.1.4
│       │   │   │   │   ├── log v0.4.22
│       │   │   │   │   ├── once_cell v1.19.0
│       │   │   │   │   └── tracing-core v0.1.32 (*)
│       │   │   │   └── tracing-subscriber v0.3.18
│       │   │   │       ├── matchers v0.1.0
│       │   │   │       │   └── regex-automata v0.1.10
│       │   │   │       │       └── regex-syntax v0.6.29
│       │   │   │       ├── nu-ansi-term v0.46.0
│       │   │   │       │   └── overload v0.1.1
│       │   │   │       ├── once_cell v1.19.0
│       │   │   │       ├── regex v1.10.6
│       │   │   │       │   ├── aho-corasick v1.1.3
│       │   │   │       │   │   └── memchr v2.7.4
│       │   │   │       │   ├── memchr v2.7.4
│       │   │   │       │   ├── regex-automata v0.4.7
│       │   │   │       │   │   ├── aho-corasick v1.1.3 (*)
│       │   │   │       │   │   ├── memchr v2.7.4
│       │   │   │       │   │   └── regex-syntax v0.8.4
│       │   │   │       │   └── regex-syntax v0.8.4
│       │   │   │       ├── sharded-slab v0.1.7
│       │   │   │       │   └── lazy_static v1.5.0
│       │   │   │       ├── smallvec v1.13.2 (*)
│       │   │   │       ├── thread_local v1.1.8 (*)
│       │   │   │       ├── tracing v0.1.40 (*)
│       │   │   │       ├── tracing-core v0.1.32 (*)
│       │   │   │       └── tracing-log v0.2.0
│       │   │   │           ├── log v0.4.22
│       │   │   │           ├── once_cell v1.19.0
│       │   │   │           └── tracing-core v0.1.32 (*)
│       │   │   ├── bevy_time v0.11.3
│       │   │   │   ├── bevy_app v0.11.3 (*)
│       │   │   │   ├── bevy_ecs v0.11.3 (*)
│       │   │   │   ├── bevy_reflect v0.11.3 (*)
│       │   │   │   ├── bevy_utils v0.11.3 (*)
│       │   │   │   ├── crossbeam-channel v0.5.13
│       │   │   │   │   └── crossbeam-utils v0.8.20
│       │   │   │   └── thiserror v1.0.64 (*)
│       │   │   ├── bevy_utils v0.11.3 (*)
│       │   │   └── sysinfo v0.29.11
│       │   │       ├── cfg-if v1.0.0
│       │   │       ├── libc v0.2.159
│       │   │       └── once_cell v1.19.0
│       │   ├── bevy_ecs v0.11.3 (*)
│       │   ├── bevy_log v0.11.3 (*)
│       │   ├── bevy_reflect v0.11.3 (*)
│       │   ├── bevy_tasks v0.11.3 (*)
│       │   ├── bevy_utils v0.11.3 (*)
│       │   ├── crossbeam-channel v0.5.13 (*)
│       │   ├── downcast-rs v1.2.1
│       │   ├── fastrand v1.9.0
│       │   ├── parking_lot v0.12.3 (*)
│       │   ├── serde v1.0.210 (*)
│       │   └── thiserror v1.0.64 (*)
│       ├── bevy_core v0.11.3 (*)
│       ├── bevy_core_pipeline v0.11.3
│       │   ├── bevy_app v0.11.3 (*)
│       │   ├── bevy_asset v0.11.3 (*)
│       │   ├── bevy_core v0.11.3 (*)
│       │   ├── bevy_derive v0.11.3 (proc-macro) (*)
│       │   ├── bevy_ecs v0.11.3 (*)
│       │   ├── bevy_math v0.11.3 (*)
│       │   ├── bevy_reflect v0.11.3 (*)
│       │   ├── bevy_render v0.11.3
│       │   │   ├── anyhow v1.0.89
│       │   │   ├── async-channel v1.9.0 (*)
│       │   │   ├── bevy_app v0.11.3 (*)
│       │   │   ├── bevy_asset v0.11.3 (*)
│       │   │   ├── bevy_core v0.11.3 (*)
│       │   │   ├── bevy_derive v0.11.3 (proc-macro) (*)
│       │   │   ├── bevy_ecs v0.11.3 (*)
│       │   │   ├── bevy_encase_derive v0.11.3 (proc-macro)
│       │   │   │   ├── bevy_macro_utils v0.11.3 (*)
│       │   │   │   └── encase_derive_impl v0.6.1
│       │   │   │       ├── proc-macro2 v1.0.86 (*)
│       │   │   │       ├── quote v1.0.37 (*)
│       │   │   │       └── syn v2.0.79 (*)
│       │   │   ├── bevy_hierarchy v0.11.3
│       │   │   │   ├── bevy_app v0.11.3 (*)
│       │   │   │   ├── bevy_core v0.11.3 (*)
│       │   │   │   ├── bevy_ecs v0.11.3 (*)
│       │   │   │   ├── bevy_log v0.11.3 (*)
│       │   │   │   ├── bevy_reflect v0.11.3 (*)
│       │   │   │   ├── bevy_utils v0.11.3 (*)
│       │   │   │   └── smallvec v1.13.2 (*)
│       │   │   ├── bevy_log v0.11.3 (*)
│       │   │   ├── bevy_math v0.11.3 (*)
│       │   │   ├── bevy_mikktspace v0.11.3
│       │   │   │   └── glam v0.24.2 (*)
│       │   │   ├── bevy_reflect v0.11.3 (*)
│       │   │   ├── bevy_render_macros v0.11.3 (proc-macro)
│       │   │   │   ├── bevy_macro_utils v0.11.3 (*)
│       │   │   │   ├── proc-macro2 v1.0.86 (*)
│       │   │   │   ├── quote v1.0.37 (*)
│       │   │   │   └── syn v2.0.79 (*)
│       │   │   ├── bevy_tasks v0.11.3 (*)
│       │   │   ├── bevy_time v0.11.3 (*)
│       │   │   ├── bevy_transform v0.11.3
│       │   │   │   ├── bevy_app v0.11.3 (*)
│       │   │   │   ├── bevy_ecs v0.11.3 (*)
│       │   │   │   ├── bevy_hierarchy v0.11.3 (*)
│       │   │   │   ├── bevy_math v0.11.3 (*)
│       │   │   │   └── bevy_reflect v0.11.3 (*)
│       │   │   ├── bevy_utils v0.11.3 (*)
│       │   │   ├── bevy_window v0.11.3
│       │   │   │   ├── bevy_app v0.11.3 (*)
│       │   │   │   ├── bevy_ecs v0.11.3 (*)
│       │   │   │   ├── bevy_input v0.11.3
│       │   │   │   │   ├── bevy_app v0.11.3 (*)
│       │   │   │   │   ├── bevy_ecs v0.11.3 (*)
│       │   │   │   │   ├── bevy_math v0.11.3 (*)
│       │   │   │   │   ├── bevy_reflect v0.11.3 (*)
│       │   │   │   │   ├── bevy_utils v0.11.3 (*)
│       │   │   │   │   └── thiserror v1.0.64 (*)
│       │   │   │   ├── bevy_math v0.11.3 (*)
│       │   │   │   ├── bevy_reflect v0.11.3 (*)
│       │   │   │   ├── bevy_utils v0.11.3 (*)
│       │   │   │   └── raw-window-handle v0.5.2
│       │   │   ├── bitflags v2.6.0
│       │   │   ├── bytemuck v1.18.0 (*)
│       │   │   ├── codespan-reporting v0.11.1
│       │   │   │   ├── termcolor v1.4.1
│       │   │   │   └── unicode-width v0.1.14
│       │   │   ├── downcast-rs v1.2.1
│       │   │   ├── encase v0.6.1
│       │   │   │   ├── const_panic v0.2.10
│       │   │   │   ├── encase_derive v0.6.1 (proc-macro)
│       │   │   │   │   └── encase_derive_impl v0.6.1 (*)
│       │   │   │   ├── glam v0.24.2 (*)
│       │   │   │   └── thiserror v1.0.64 (*)
│       │   │   ├── futures-lite v1.13.0 (*)
│       │   │   ├── hexasphere v9.1.0
│       │   │   │   ├── constgebra v0.1.4
│       │   │   │   │   └── const_soft_float v0.1.4
│       │   │   │   └── glam v0.24.2 (*)
│       │   │   ├── image v0.24.9
│       │   │   │   ├── bytemuck v1.18.0 (*)
│       │   │   │   ├── byteorder v1.5.0
│       │   │   │   ├── color_quant v1.1.0
│       │   │   │   ├── num-traits v0.2.19
│       │   │   │   │   └── libm v0.2.8
│       │   │   │   │   [build-dependencies]
│       │   │   │   │   └── autocfg v1.4.0
│       │   │   │   └── png v0.17.14
│       │   │   │       ├── bitflags v1.3.2
│       │   │   │       ├── crc32fast v1.4.2
│       │   │   │       │   └── cfg-if v1.0.0
│       │   │   │       ├── fdeflate v0.3.5
│       │   │   │       │   └── simd-adler32 v0.3.7
│       │   │   │       ├── flate2 v1.0.34
│       │   │   │       │   ├── crc32fast v1.4.2 (*)
│       │   │   │       │   └── miniz_oxide v0.8.0
│       │   │   │       │       ├── adler2 v2.0.0
│       │   │   │       │       └── simd-adler32 v0.3.7
│       │   │   │       └── miniz_oxide v0.8.0 (*)
│       │   │   ├── naga v0.12.3
│       │   │   │   ├── bit-set v0.5.3 (*)
│       │   │   │   ├── bitflags v1.3.2
│       │   │   │   ├── codespan-reporting v0.11.1 (*)
│       │   │   │   ├── hexf-parse v0.2.1
│       │   │   │   ├── indexmap v1.9.3
│       │   │   │   │   ├── hashbrown v0.12.3
│       │   │   │   │   └── serde v1.0.210 (*)
│       │   │   │   │   [build-dependencies]
│       │   │   │   │   └── autocfg v1.4.0
│       │   │   │   ├── log v0.4.22
│       │   │   │   ├── num-traits v0.2.19 (*)
│       │   │   │   ├── pp-rs v0.2.1
│       │   │   │   │   └── unicode-xid v0.2.6
│       │   │   │   ├── rustc-hash v1.1.0
│       │   │   │   ├── spirv v0.2.0+1.5.4
│       │   │   │   │   ├── bitflags v1.3.2
│       │   │   │   │   └── num-traits v0.2.19 (*)
│       │   │   │   ├── termcolor v1.4.1
│       │   │   │   ├── thiserror v1.0.64 (*)
│       │   │   │   └── unicode-xid v0.2.6
│       │   │   ├── naga_oil v0.8.2
│       │   │   │   ├── bit-set v0.5.3 (*)
│       │   │   │   ├── codespan-reporting v0.11.1 (*)
│       │   │   │   ├── data-encoding v2.6.0
│       │   │   │   ├── indexmap v1.9.3 (*)
│       │   │   │   ├── naga v0.12.3 (*)
│       │   │   │   ├── once_cell v1.19.0
│       │   │   │   ├── regex v1.10.6 (*)
│       │   │   │   ├── regex-syntax v0.6.29
│       │   │   │   ├── rustc-hash v1.1.0
│       │   │   │   ├── thiserror v1.0.64 (*)
│       │   │   │   ├── tracing v0.1.40 (*)
│       │   │   │   └── unicode-ident v1.0.13
│       │   │   ├── parking_lot v0.12.3 (*)
│       │   │   ├── regex v1.10.6 (*)
│       │   │   ├── serde v1.0.210 (*)
│       │   │   ├── smallvec v1.13.2 (*)
│       │   │   ├── thiserror v1.0.64 (*)
│       │   │   ├── thread_local v1.1.8 (*)
│       │   │   ├── wgpu v0.16.3
│       │   │   │   ├── arrayvec v0.7.6
│       │   │   │   ├── cfg-if v1.0.0
│       │   │   │   ├── log v0.4.22
│       │   │   │   ├── naga v0.12.3 (*)
│       │   │   │   ├── parking_lot v0.12.3 (*)
│       │   │   │   ├── profiling v1.0.15
│       │   │   │   ├── raw-window-handle v0.5.2
│       │   │   │   ├── smallvec v1.13.2 (*)
│       │   │   │   ├── static_assertions v1.1.0
│       │   │   │   ├── wgpu-core v0.16.1
│       │   │   │   │   ├── arrayvec v0.7.6
│       │   │   │   │   ├── bit-vec v0.6.3
│       │   │   │   │   ├── bitflags v2.6.0
│       │   │   │   │   ├── codespan-reporting v0.11.1 (*)
│       │   │   │   │   ├── log v0.4.22
│       │   │   │   │   ├── naga v0.12.3 (*)
│       │   │   │   │   ├── parking_lot v0.12.3 (*)
│       │   │   │   │   ├── profiling v1.0.15
│       │   │   │   │   ├── raw-window-handle v0.5.2
│       │   │   │   │   ├── rustc-hash v1.1.0
│       │   │   │   │   ├── smallvec v1.13.2 (*)
│       │   │   │   │   ├── thiserror v1.0.64 (*)
│       │   │   │   │   ├── wgpu-hal v0.16.2
│       │   │   │   │   │   ├── arrayvec v0.7.6
│       │   │   │   │   │   ├── ash v0.37.3+1.3.251
│       │   │   │   │   │   │   └── libloading v0.7.4
│       │   │   │   │   │   │       └── cfg-if v1.0.0
│       │   │   │   │   │   ├── bitflags v2.6.0
│       │   │   │   │   │   ├── glow v0.12.3
│       │   │   │   │   │   ├── gpu-alloc v0.5.4
│       │   │   │   │   │   │   ├── bitflags v1.3.2
│       │   │   │   │   │   │   └── gpu-alloc-types v0.2.0
│       │   │   │   │   │   │       └── bitflags v1.3.2
│       │   │   │   │   │   ├── gpu-descriptor v0.2.4
│       │   │   │   │   │   │   ├── bitflags v2.6.0
│       │   │   │   │   │   │   ├── gpu-descriptor-types v0.1.2
│       │   │   │   │   │   │   │   └── bitflags v2.6.0
│       │   │   │   │   │   │   └── hashbrown v0.14.5 (*)
│       │   │   │   │   │   ├── khronos-egl v4.1.0
│       │   │   │   │   │   │   ├── libc v0.2.159
│       │   │   │   │   │   │   └── libloading v0.7.4 (*)
│       │   │   │   │   │   ├── libc v0.2.159
│       │   │   │   │   │   ├── libloading v0.8.5
│       │   │   │   │   │   │   └── cfg-if v1.0.0
│       │   │   │   │   │   ├── log v0.4.22
│       │   │   │   │   │   ├── naga v0.12.3 (*)
│       │   │   │   │   │   ├── parking_lot v0.12.3 (*)
│       │   │   │   │   │   ├── profiling v1.0.15
│       │   │   │   │   │   ├── raw-window-handle v0.5.2
│       │   │   │   │   │   ├── renderdoc-sys v1.1.0
│       │   │   │   │   │   ├── rustc-hash v1.1.0
│       │   │   │   │   │   ├── smallvec v1.13.2 (*)
│       │   │   │   │   │   ├── thiserror v1.0.64 (*)
│       │   │   │   │   │   └── wgpu-types v0.16.1
│       │   │   │   │   │       └── bitflags v2.6.0
│       │   │   │   │   └── wgpu-types v0.16.1 (*)
│       │   │   │   ├── wgpu-hal v0.16.2 (*)
│       │   │   │   └── wgpu-types v0.16.1 (*)
│       │   │   └── wgpu-hal v0.16.2 (*)
│       │   ├── bevy_transform v0.11.3 (*)
│       │   ├── bevy_utils v0.11.3 (*)
│       │   ├── bitflags v2.6.0
│       │   ├── radsort v0.1.1
│       │   └── serde v1.0.210 (*)
│       ├── bevy_derive v0.11.3 (proc-macro) (*)
│       ├── bevy_diagnostic v0.11.3 (*)
│       ├── bevy_ecs v0.11.3 (*)
│       ├── bevy_hierarchy v0.11.3 (*)
│       ├── bevy_input v0.11.3 (*)
│       ├── bevy_log v0.11.3 (*)
│       ├── bevy_math v0.11.3 (*)
│       ├── bevy_ptr v0.11.3
│       ├── bevy_reflect v0.11.3 (*)
│       ├── bevy_render v0.11.3 (*)
│       ├── bevy_sprite v0.11.3
│       │   ├── bevy_app v0.11.3 (*)
│       │   ├── bevy_asset v0.11.3 (*)
│       │   ├── bevy_core_pipeline v0.11.3 (*)
│       │   ├── bevy_derive v0.11.3 (proc-macro) (*)
│       │   ├── bevy_ecs v0.11.3 (*)
│       │   ├── bevy_log v0.11.3 (*)
│       │   ├── bevy_math v0.11.3 (*)
│       │   ├── bevy_reflect v0.11.3 (*)
│       │   ├── bevy_render v0.11.3 (*)
│       │   ├── bevy_transform v0.11.3 (*)
│       │   ├── bevy_utils v0.11.3 (*)
│       │   ├── bitflags v2.6.0
│       │   ├── bytemuck v1.18.0 (*)
│       │   ├── fixedbitset v0.4.2
│       │   ├── guillotiere v0.6.2
│       │   │   ├── euclid v0.22.11
│       │   │   │   └── num-traits v0.2.19 (*)
│       │   │   └── svg_fmt v0.4.3
│       │   ├── rectangle-pack v0.4.2
│       │   └── thiserror v1.0.64 (*)
│       ├── bevy_tasks v0.11.3 (*)
│       ├── bevy_time v0.11.3 (*)
│       ├── bevy_transform v0.11.3 (*)
│       ├── bevy_utils v0.11.3 (*)
│       ├── bevy_window v0.11.3 (*)
│       └── bevy_winit v0.11.3
│           ├── accesskit_winit v0.14.4
│           │   ├── accesskit v0.11.2
│           │   └── winit v0.28.7
│           │       ├── bitflags v1.3.2
│           │       ├── instant v0.1.13 (*)
│           │       ├── libc v0.2.159
│           │       ├── log v0.4.22
│           │       ├── mio v0.8.11
│           │       │   ├── libc v0.2.159
│           │       │   └── log v0.4.22
│           │       ├── once_cell v1.19.0
│           │       ├── percent-encoding v2.3.1
│           │       ├── raw-window-handle v0.5.2
│           │       └── x11-dl v2.21.0
│           │           ├── libc v0.2.159
│           │           └── once_cell v1.19.0
│           │           [build-dependencies]
│           │           └── pkg-config v0.3.31
│           │       [build-dependencies]
│           │       ├── cfg_aliases v0.1.1
│           │       └── wayland-scanner v0.29.5
│           │           ├── proc-macro2 v1.0.86 (*)
│           │           ├── quote v1.0.37 (*)
│           │           └── xml-rs v0.8.22
│           ├── approx v0.5.1
│           │   └── num-traits v0.2.19 (*)
│           ├── bevy_a11y v0.11.3 (*)
│           ├── bevy_app v0.11.3 (*)
│           ├── bevy_derive v0.11.3 (proc-macro) (*)
│           ├── bevy_ecs v0.11.3 (*)
│           ├── bevy_hierarchy v0.11.3 (*)
│           ├── bevy_input v0.11.3 (*)
│           ├── bevy_math v0.11.3 (*)
│           ├── bevy_tasks v0.11.3 (*)
│           ├── bevy_utils v0.11.3 (*)
│           ├── bevy_window v0.11.3 (*)
│           ├── raw-window-handle v0.5.2
│           └── winit v0.28.7 (*)
├── bevy_tasks v0.11.3 (*)
├── bitfield v0.14.0
├── bitflags v2.6.0
├── bones_bevy_renderer v0.4.0 (* git)
│   ├── anyhow v1.0.89
│   ├── bevy v0.11.3
│   │   └── bevy_internal v0.11.3 (*)
│   ├── bevy_egui v0.22.0
│   │   ├── arboard v3.4.1
│   │   │   ├── image v0.25.2
│   │   │   │   ├── bytemuck v1.18.0 (*)
│   │   │   │   ├── byteorder-lite v0.1.0
│   │   │   │   ├── num-traits v0.2.19 (*)
│   │   │   │   └── png v0.17.14 (*)
│   │   │   ├── log v0.4.22
│   │   │   ├── parking_lot v0.12.3 (*)
│   │   │   └── x11rb v0.13.1
│   │   │       ├── rustix v0.38.37
│   │   │       │   ├── bitflags v2.6.0
│   │   │       │   └── linux-raw-sys v0.4.14
│   │   │       └── x11rb-protocol v0.13.1
│   │   ├── bevy v0.11.3 (*)
│   │   ├── egui v0.23.0
│   │   │   ├── ahash v0.8.11 (*)
│   │   │   ├── epaint v0.23.0
│   │   │   │   ├── ab_glyph v0.2.28
│   │   │   │   │   ├── ab_glyph_rasterizer v0.1.8
│   │   │   │   │   └── owned_ttf_parser v0.24.0
│   │   │   │   │       └── ttf-parser v0.24.1
│   │   │   │   ├── ahash v0.8.11 (*)
│   │   │   │   ├── bytemuck v1.18.0 (*)
│   │   │   │   ├── ecolor v0.23.0
│   │   │   │   │   ├── bytemuck v1.18.0 (*)
│   │   │   │   │   └── serde v1.0.210 (*)
│   │   │   │   ├── emath v0.23.0
│   │   │   │   │   ├── bytemuck v1.18.0 (*)
│   │   │   │   │   └── serde v1.0.210 (*)
│   │   │   │   ├── nohash-hasher v0.2.0
│   │   │   │   ├── parking_lot v0.12.3 (*)
│   │   │   │   └── serde v1.0.210 (*)
│   │   │   ├── nohash-hasher v0.2.0
│   │   │   └── serde v1.0.210 (*)
│   │   ├── thread_local v1.1.8 (*)
│   │   └── webbrowser v0.8.15
│   │       ├── home v0.5.9
│   │       ├── log v0.4.22
│   │       └── url v2.5.2
│   │           ├── form_urlencoded v1.2.1
│   │           │   └── percent-encoding v2.3.1
│   │           ├── idna v0.5.0
│   │           │   ├── unicode-bidi v0.3.15
│   │           │   └── unicode-normalization v0.1.24
│   │           │       └── tinyvec v1.8.0
│   │           │           └── tinyvec_macros v0.1.1
│   │           ├── percent-encoding v2.3.1
│   │           └── serde v1.0.210 (*)
│   ├── bevy_prototype_lyon v0.9.0
│   │   ├── bevy v0.11.3 (*)
│   │   ├── lyon_algorithms v1.0.4
│   │   │   ├── lyon_path v1.0.5
│   │   │   │   ├── lyon_geom v1.0.5
│   │   │   │   │   ├── arrayvec v0.7.6
│   │   │   │   │   ├── euclid v0.22.11 (*)
│   │   │   │   │   └── num-traits v0.2.19 (*)
│   │   │   │   └── num-traits v0.2.19 (*)
│   │   │   └── num-traits v0.2.19 (*)
│   │   ├── lyon_tessellation v1.0.15
│   │   │   ├── float_next_after v1.0.0
│   │   │   ├── lyon_path v1.0.5 (*)
│   │   │   └── num-traits v0.2.19 (*)
│   │   └── svgtypes v0.8.2
│   │       └── siphasher v0.3.11
│   ├── bones_framework v0.4.0 (* git)
│   │   ├── anyhow v1.0.89
│   │   ├── async-channel v1.9.0 (*)
│   │   ├── bevy_tasks v0.11.3 (*)
│   │   ├── bones_asset v0.4.0 (* git)
│   │   │   ├── anyhow v1.0.89
│   │   │   ├── append-only-vec v0.1.6
│   │   │   ├── async-channel v1.9.0 (*)
│   │   │   ├── bevy_tasks v0.11.3 (*)
│   │   │   ├── bones_schema v0.4.0 (* git)
│   │   │   │   ├── append-only-vec v0.1.6
│   │   │   │   ├── bones_schema_macros v0.4.0 (proc-macro) (* git)
│   │   │   │   │   ├── proc-macro2 v1.0.86 (*)
│   │   │   │   │   ├── quote v1.0.37 (*)
│   │   │   │   │   └── venial v0.5.0
│   │   │   │   │       ├── proc-macro2 v1.0.86 (*)
│   │   │   │   │       └── quote v1.0.37 (*)
│   │   │   │   ├── bones_utils v0.4.0 (* git)
│   │   │   │   │   ├── bones_utils_macros v0.4.0 (proc-macro) (* git)
│   │   │   │   │   │   ├── quote v1.0.37 (*)
│   │   │   │   │   │   └── venial v0.5.0 (*)
│   │   │   │   │   ├── fxhash v0.2.1
│   │   │   │   │   │   └── byteorder v1.5.0
│   │   │   │   │   ├── hashbrown v0.14.5 (*)
│   │   │   │   │   ├── instant v0.1.13 (*)
│   │   │   │   │   ├── serde v1.0.210 (*)
│   │   │   │   │   ├── turborand v0.10.1
│   │   │   │   │   │   └── getrandom v0.2.15 (*)
│   │   │   │   │   └── ulid v1.1.3
│   │   │   │   │       └── rand v0.8.5
│   │   │   │   │           ├── libc v0.2.159
│   │   │   │   │           ├── rand_chacha v0.3.1
│   │   │   │   │           │   ├── ppv-lite86 v0.2.20
│   │   │   │   │           │   │   └── zerocopy v0.7.35 (*)
│   │   │   │   │           │   └── rand_core v0.6.4
│   │   │   │   │           │       └── getrandom v0.2.15 (*)
│   │   │   │   │           └── rand_core v0.6.4 (*)
│   │   │   │   ├── erased-serde v0.4.5
│   │   │   │   │   ├── serde v1.0.210 (*)
│   │   │   │   │   └── typeid v1.0.2
│   │   │   │   ├── fxhash v0.2.1 (*)
│   │   │   │   ├── glam v0.24.2 (*)
│   │   │   │   ├── hashbrown v0.14.5 (*)
│   │   │   │   ├── humantime v2.1.0
│   │   │   │   ├── parking_lot v0.12.3 (*)
│   │   │   │   ├── paste v1.0.15 (proc-macro)
│   │   │   │   ├── serde v1.0.210 (*)
│   │   │   │   ├── sptr v0.3.2
│   │   │   │   ├── stable_deref_trait v1.2.0
│   │   │   │   └── ustr v0.10.0
│   │   │   │       ├── ahash v0.8.11 (*)
│   │   │   │       ├── byteorder v1.5.0
│   │   │   │       ├── lazy_static v1.5.0
│   │   │   │       └── parking_lot v0.12.3 (*)
│   │   │   ├── bones_utils v0.4.0 (* git)
│   │   │   ├── bs58 v0.5.1
│   │   │   ├── dashmap v5.5.3
│   │   │   │   ├── cfg-if v1.0.0
│   │   │   │   ├── hashbrown v0.14.5 (*)
│   │   │   │   ├── lock_api v0.4.12 (*)
│   │   │   │   ├── once_cell v1.19.0
│   │   │   │   └── parking_lot_core v0.9.10 (*)
│   │   │   ├── ehttp v0.3.1
│   │   │   │   ├── document-features v0.2.10 (proc-macro)
│   │   │   │   │   └── litrs v0.4.1
│   │   │   │   ├── ureq v2.10.1
│   │   │   │   │   ├── base64 v0.22.1
│   │   │   │   │   ├── flate2 v1.0.34 (*)
│   │   │   │   │   ├── log v0.4.22
│   │   │   │   │   ├── once_cell v1.19.0
│   │   │   │   │   ├── rustls v0.23.13
│   │   │   │   │   │   ├── log v0.4.22
│   │   │   │   │   │   ├── once_cell v1.19.0
│   │   │   │   │   │   ├── ring v0.17.8
│   │   │   │   │   │   │   ├── cfg-if v1.0.0
│   │   │   │   │   │   │   ├── getrandom v0.2.15 (*)
│   │   │   │   │   │   │   ├── spin v0.9.8
│   │   │   │   │   │   │   │   └── lock_api v0.4.12 (*)
│   │   │   │   │   │   │   └── untrusted v0.9.0
│   │   │   │   │   │   │   [build-dependencies]
│   │   │   │   │   │   │   └── cc v1.1.22
│   │   │   │   │   │   │       ├── jobserver v0.1.32
│   │   │   │   │   │   │       │   └── libc v0.2.159
│   │   │   │   │   │   │       ├── libc v0.2.159
│   │   │   │   │   │   │       └── shlex v1.3.0
│   │   │   │   │   │   ├── rustls-pki-types v1.9.0
│   │   │   │   │   │   ├── rustls-webpki v0.102.8
│   │   │   │   │   │   │   ├── ring v0.17.8 (*)
│   │   │   │   │   │   │   ├── rustls-pki-types v1.9.0
│   │   │   │   │   │   │   └── untrusted v0.9.0
│   │   │   │   │   │   ├── subtle v2.6.1
│   │   │   │   │   │   └── zeroize v1.8.1
│   │   │   │   │   ├── rustls-pki-types v1.9.0
│   │   │   │   │   ├── url v2.5.2 (*)
│   │   │   │   │   └── webpki-roots v0.26.6
│   │   │   │   │       └── rustls-pki-types v1.9.0
│   │   │   │   └── web-sys v0.3.70
│   │   │   │       ├── js-sys v0.3.70
│   │   │   │       │   └── wasm-bindgen v0.2.93
│   │   │   │       │       ├── cfg-if v1.0.0
│   │   │   │       │       ├── once_cell v1.19.0
│   │   │   │       │       └── wasm-bindgen-macro v0.2.93 (proc-macro)
│   │   │   │       │           ├── quote v1.0.37 (*)
│   │   │   │       │           └── wasm-bindgen-macro-support v0.2.93
│   │   │   │       │               ├── proc-macro2 v1.0.86 (*)
│   │   │   │       │               ├── quote v1.0.37 (*)
│   │   │   │       │               ├── syn v2.0.79 (*)
│   │   │   │       │               ├── wasm-bindgen-backend v0.2.93
│   │   │   │       │               │   ├── bumpalo v3.16.0
│   │   │   │       │               │   ├── log v0.4.22
│   │   │   │       │               │   ├── once_cell v1.19.0
│   │   │   │       │               │   ├── proc-macro2 v1.0.86 (*)
│   │   │   │       │               │   ├── quote v1.0.37 (*)
│   │   │   │       │               │   ├── syn v2.0.79 (*)
│   │   │   │       │               │   └── wasm-bindgen-shared v0.2.93
│   │   │   │       │               └── wasm-bindgen-shared v0.2.93
│   │   │   │       └── wasm-bindgen v0.2.93 (*)
│   │   │   ├── elsa v1.10.0
│   │   │   │   └── stable_deref_trait v1.2.0
│   │   │   ├── erased-serde v0.4.5 (*)
│   │   │   ├── event-listener v4.0.3
│   │   │   │   ├── concurrent-queue v2.5.0 (*)
│   │   │   │   ├── parking v2.2.1
│   │   │   │   └── pin-project-lite v0.2.14
│   │   │   ├── futures-lite v2.3.0 (*)
│   │   │   ├── notify v6.1.1
│   │   │   │   ├── crossbeam-channel v0.5.13 (*)
│   │   │   │   ├── filetime v0.2.25
│   │   │   │   │   ├── cfg-if v1.0.0
│   │   │   │   │   └── libc v0.2.159
│   │   │   │   ├── inotify v0.9.6
│   │   │   │   │   ├── bitflags v1.3.2
│   │   │   │   │   ├── inotify-sys v0.1.5
│   │   │   │   │   │   └── libc v0.2.159
│   │   │   │   │   └── libc v0.2.159
│   │   │   │   ├── libc v0.2.159
│   │   │   │   ├── log v0.4.22
│   │   │   │   ├── mio v0.8.11 (*)
│   │   │   │   └── walkdir v2.5.0
│   │   │   │       └── same-file v1.0.6
│   │   │   ├── once_cell v1.19.0
│   │   │   ├── parking_lot v0.12.3 (*)
│   │   │   ├── paste v1.0.15 (proc-macro)
│   │   │   ├── path-absolutize v3.1.1
│   │   │   │   └── path-dedot v3.1.1
│   │   │   │       └── once_cell v1.19.0
│   │   │   ├── semver v1.0.23
│   │   │   │   └── serde v1.0.210 (*)
│   │   │   ├── serde v1.0.210 (*)
│   │   │   ├── serde_json v1.0.128
│   │   │   │   ├── itoa v1.0.11
│   │   │   │   ├── memchr v2.7.4
│   │   │   │   ├── ryu v1.0.18
│   │   │   │   └── serde v1.0.210 (*)
│   │   │   ├── serde_yaml v0.9.34+deprecated
│   │   │   │   ├── indexmap v2.5.0 (*)
│   │   │   │   ├── itoa v1.0.11
│   │   │   │   ├── ryu v1.0.18
│   │   │   │   ├── serde v1.0.210 (*)
│   │   │   │   └── unsafe-libyaml v0.2.11
│   │   │   ├── sha2 v0.10.8
│   │   │   │   ├── cfg-if v1.0.0
│   │   │   │   ├── cpufeatures v0.2.14
│   │   │   │   └── digest v0.10.7
│   │   │   │       ├── block-buffer v0.10.4
│   │   │   │       │   └── generic-array v0.14.7
│   │   │   │       │       ├── typenum v1.17.0
│   │   │   │       │       └── zeroize v1.8.1
│   │   │   │       │       [build-dependencies]
│   │   │   │       │       └── version_check v0.9.5
│   │   │   │       ├── crypto-common v0.1.6
│   │   │   │       │   ├── generic-array v0.14.7 (*)
│   │   │   │       │   ├── rand_core v0.6.4 (*)
│   │   │   │       │   └── typenum v1.17.0
│   │   │   │       └── subtle v2.6.1
│   │   │   ├── tracing v0.1.40 (*)
│   │   │   ├── ulid v1.1.3 (*)
│   │   │   └── ustr v0.10.0 (*)
│   │   ├── bones_lib v0.4.0 (* git)
│   │   │   ├── bones_ecs v0.4.0 (* git)
│   │   │   │   ├── anyhow v1.0.89
│   │   │   │   ├── atomicell v0.2.0
│   │   │   │   ├── bitset-core v0.1.1
│   │   │   │   ├── bones_ecs_macros v0.4.0 (proc-macro) (* git)
│   │   │   │   │   ├── bones_ecs_macros_core v0.4.0 (* git)
│   │   │   │   │   │   ├── proc-macro2 v1.0.86 (*)
│   │   │   │   │   │   ├── quote v1.0.37 (*)
│   │   │   │   │   │   └── syn v2.0.79 (*)
│   │   │   │   │   └── proc-macro2 v1.0.86 (*)
│   │   │   │   ├── bones_schema v0.4.0 (* git)
│   │   │   │   ├── bones_utils v0.4.0 (* git)
│   │   │   │   ├── branches v0.1.3
│   │   │   │   ├── glam v0.24.2 (*)
│   │   │   │   ├── once_map v0.4.19
│   │   │   │   │   ├── ahash v0.8.11 (*)
│   │   │   │   │   ├── hashbrown v0.14.5 (*)
│   │   │   │   │   ├── parking_lot v0.12.3 (*)
│   │   │   │   │   └── stable_deref_trait v1.2.0
│   │   │   │   ├── paste v1.0.15 (proc-macro)
│   │   │   │   └── thiserror v1.0.64 (*)
│   │   │   ├── instant v0.1.13 (*)
│   │   │   └── ustr v0.10.0 (*)
│   │   ├── bones_matchmaker_proto v0.4.0 (* git)
│   │   │   ├── iroh-net v0.27.0
│   │   │   │   ├── anyhow v1.0.89
│   │   │   │   ├── backoff v0.4.0
│   │   │   │   │   ├── getrandom v0.2.15 (*)
│   │   │   │   │   ├── instant v0.1.13 (*)
│   │   │   │   │   └── rand v0.8.5 (*)
│   │   │   │   ├── base64 v0.22.1
│   │   │   │   ├── bytes v1.7.2
│   │   │   │   ├── der v0.7.9
│   │   │   │   │   └── der_derive v0.7.3 (proc-macro)
│   │   │   │   │       ├── proc-macro2 v1.0.86 (*)
│   │   │   │   │       ├── quote v1.0.37 (*)
│   │   │   │   │       └── syn v2.0.79 (*)
│   │   │   │   ├── derive_more v1.0.0
│   │   │   │   │   └── derive_more-impl v1.0.0 (proc-macro)
│   │   │   │   │       ├── proc-macro2 v1.0.86 (*)
│   │   │   │   │       ├── quote v1.0.37 (*)
│   │   │   │   │       ├── syn v2.0.79 (*)
│   │   │   │   │       └── unicode-xid v0.2.6
│   │   │   │   ├── futures-buffered v0.2.8
│   │   │   │   │   ├── diatomic-waker v0.2.3
│   │   │   │   │   ├── futures-core v0.3.30
│   │   │   │   │   └── pin-project-lite v0.2.14
│   │   │   │   ├── futures-concurrency v7.6.1
│   │   │   │   │   ├── bitvec v1.0.1
│   │   │   │   │   │   ├── funty v2.0.0
│   │   │   │   │   │   ├── radium v0.7.0
│   │   │   │   │   │   ├── tap v1.0.1
│   │   │   │   │   │   └── wyz v0.5.1
│   │   │   │   │   │       └── tap v1.0.1
│   │   │   │   │   ├── futures-buffered v0.2.8 (*)
│   │   │   │   │   ├── futures-core v0.3.30
│   │   │   │   │   ├── futures-lite v1.13.0 (*)
│   │   │   │   │   ├── pin-project v1.1.5
│   │   │   │   │   │   └── pin-project-internal v1.1.5 (proc-macro)
│   │   │   │   │   │       ├── proc-macro2 v1.0.86 (*)
│   │   │   │   │   │       ├── quote v1.0.37 (*)
│   │   │   │   │   │       └── syn v2.0.79 (*)
│   │   │   │   │   ├── slab v0.4.9 (*)
│   │   │   │   │   └── smallvec v1.13.2 (*)
│   │   │   │   ├── futures-lite v2.3.0 (*)
│   │   │   │   ├── futures-sink v0.3.30
│   │   │   │   ├── futures-util v0.3.30
│   │   │   │   │   ├── futures-channel v0.3.30
│   │   │   │   │   │   ├── futures-core v0.3.30
│   │   │   │   │   │   └── futures-sink v0.3.30
│   │   │   │   │   ├── futures-core v0.3.30
│   │   │   │   │   ├── futures-io v0.3.30
│   │   │   │   │   ├── futures-macro v0.3.30 (proc-macro)
│   │   │   │   │   │   ├── proc-macro2 v1.0.86 (*)
│   │   │   │   │   │   ├── quote v1.0.37 (*)
│   │   │   │   │   │   └── syn v2.0.79 (*)
│   │   │   │   │   ├── futures-sink v0.3.30
│   │   │   │   │   ├── futures-task v0.3.30
│   │   │   │   │   ├── memchr v2.7.4
│   │   │   │   │   ├── pin-project-lite v0.2.14
│   │   │   │   │   ├── pin-utils v0.1.0
│   │   │   │   │   └── slab v0.4.9 (*)
│   │   │   │   ├── genawaiter v0.99.1
│   │   │   │   │   ├── futures-core v0.3.30
│   │   │   │   │   ├── genawaiter-macro v0.99.1
│   │   │   │   │   ├── genawaiter-proc-macro v0.99.1 (proc-macro)
│   │   │   │   │   │   ├── proc-macro-error v0.4.12
│   │   │   │   │   │   │   ├── proc-macro-error-attr v0.4.12 (proc-macro)
│   │   │   │   │   │   │   │   ├── proc-macro2 v1.0.86 (*)
│   │   │   │   │   │   │   │   ├── quote v1.0.37 (*)
│   │   │   │   │   │   │   │   ├── syn v1.0.109
│   │   │   │   │   │   │   │   │   ├── proc-macro2 v1.0.86 (*)
│   │   │   │   │   │   │   │   │   ├── quote v1.0.37 (*)
│   │   │   │   │   │   │   │   │   └── unicode-ident v1.0.13
│   │   │   │   │   │   │   │   └── syn-mid v0.5.4
│   │   │   │   │   │   │   │       ├── proc-macro2 v1.0.86 (*)
│   │   │   │   │   │   │   │       ├── quote v1.0.37 (*)
│   │   │   │   │   │   │   │       └── syn v1.0.109 (*)
│   │   │   │   │   │   │   │   [build-dependencies]
│   │   │   │   │   │   │   │   └── version_check v0.9.5
│   │   │   │   │   │   │   ├── proc-macro2 v1.0.86 (*)
│   │   │   │   │   │   │   ├── quote v1.0.37 (*)
│   │   │   │   │   │   │   └── syn v1.0.109 (*)
│   │   │   │   │   │   │   [build-dependencies]
│   │   │   │   │   │   │   └── version_check v0.9.5
│   │   │   │   │   │   ├── proc-macro-hack v0.5.20+deprecated (proc-macro)
│   │   │   │   │   │   ├── proc-macro2 v1.0.86 (*)
│   │   │   │   │   │   ├── quote v1.0.37 (*)
│   │   │   │   │   │   └── syn v1.0.109 (*)
│   │   │   │   │   └── proc-macro-hack v0.5.20+deprecated (proc-macro)
│   │   │   │   ├── governor v0.6.3
│   │   │   │   │   ├── cfg-if v1.0.0
│   │   │   │   │   ├── dashmap v5.5.3 (*)
│   │   │   │   │   ├── futures v0.3.30
│   │   │   │   │   │   ├── futures-channel v0.3.30 (*)
│   │   │   │   │   │   ├── futures-core v0.3.30
│   │   │   │   │   │   ├── futures-executor v0.3.30
│   │   │   │   │   │   │   ├── futures-core v0.3.30
│   │   │   │   │   │   │   ├── futures-task v0.3.30
│   │   │   │   │   │   │   └── futures-util v0.3.30 (*)
│   │   │   │   │   │   ├── futures-io v0.3.30
│   │   │   │   │   │   ├── futures-sink v0.3.30
│   │   │   │   │   │   ├── futures-task v0.3.30
│   │   │   │   │   │   └── futures-util v0.3.30 (*)
│   │   │   │   │   ├── futures-timer v3.0.3
│   │   │   │   │   ├── no-std-compat v0.4.1
│   │   │   │   │   ├── nonzero_ext v0.3.0
│   │   │   │   │   ├── parking_lot v0.12.3 (*)
│   │   │   │   │   ├── portable-atomic v1.9.0
│   │   │   │   │   ├── quanta v0.12.3
│   │   │   │   │   │   ├── crossbeam-utils v0.8.20
│   │   │   │   │   │   ├── libc v0.2.159
│   │   │   │   │   │   ├── once_cell v1.19.0
│   │   │   │   │   │   └── raw-cpuid v11.1.0
│   │   │   │   │   │       └── bitflags v2.6.0
│   │   │   │   │   ├── rand v0.8.5 (*)
│   │   │   │   │   ├── smallvec v1.13.2 (*)
│   │   │   │   │   └── spinning_top v0.3.0
│   │   │   │   │       └── lock_api v0.4.12 (*)
│   │   │   │   ├── hex v0.4.3
│   │   │   │   ├── hickory-proto v0.25.0-alpha.2
│   │   │   │   │   ├── async-recursion v1.1.1 (proc-macro)
│   │   │   │   │   │   ├── proc-macro2 v1.0.86 (*)
│   │   │   │   │   │   ├── quote v1.0.37 (*)
│   │   │   │   │   │   └── syn v2.0.79 (*)
│   │   │   │   │   ├── async-trait v0.1.83 (proc-macro)
│   │   │   │   │   │   ├── proc-macro2 v1.0.86 (*)
│   │   │   │   │   │   ├── quote v1.0.37 (*)
│   │   │   │   │   │   └── syn v2.0.79 (*)
│   │   │   │   │   ├── cfg-if v1.0.0
│   │   │   │   │   ├── data-encoding v2.6.0
│   │   │   │   │   ├── enum-as-inner v0.6.1 (proc-macro)
│   │   │   │   │   │   ├── heck v0.5.0
│   │   │   │   │   │   ├── proc-macro2 v1.0.86 (*)
│   │   │   │   │   │   ├── quote v1.0.37 (*)
│   │   │   │   │   │   └── syn v2.0.79 (*)
│   │   │   │   │   ├── futures-channel v0.3.30 (*)
│   │   │   │   │   ├── futures-io v0.3.30
│   │   │   │   │   ├── futures-util v0.3.30 (*)
│   │   │   │   │   ├── idna v0.5.0 (*)
│   │   │   │   │   ├── ipnet v2.10.0
│   │   │   │   │   ├── once_cell v1.19.0
│   │   │   │   │   ├── rand v0.8.5 (*)
│   │   │   │   │   ├── thiserror v1.0.64 (*)
│   │   │   │   │   ├── time v0.3.36
│   │   │   │   │   │   ├── deranged v0.3.11
│   │   │   │   │   │   │   ├── powerfmt v0.2.0
│   │   │   │   │   │   │   └── serde v1.0.210 (*)
│   │   │   │   │   │   ├── itoa v1.0.11
│   │   │   │   │   │   ├── libc v0.2.159
│   │   │   │   │   │   ├── num-conv v0.1.0
│   │   │   │   │   │   ├── num_threads v0.1.7
│   │   │   │   │   │   ├── powerfmt v0.2.0
│   │   │   │   │   │   ├── serde v1.0.210 (*)
│   │   │   │   │   │   ├── time-core v0.1.2
│   │   │   │   │   │   └── time-macros v0.2.18 (proc-macro)
│   │   │   │   │   │       ├── num-conv v0.1.0
│   │   │   │   │   │       └── time-core v0.1.2
│   │   │   │   │   ├── tinyvec v1.8.0 (*)
│   │   │   │   │   ├── tokio v1.40.0
│   │   │   │   │   │   ├── bytes v1.7.2
│   │   │   │   │   │   ├── libc v0.2.159
│   │   │   │   │   │   ├── mio v1.0.2
│   │   │   │   │   │   │   └── libc v0.2.159
│   │   │   │   │   │   ├── pin-project-lite v0.2.14
│   │   │   │   │   │   ├── signal-hook-registry v1.4.2
│   │   │   │   │   │   │   └── libc v0.2.159
│   │   │   │   │   │   ├── socket2 v0.5.7
│   │   │   │   │   │   │   └── libc v0.2.159
│   │   │   │   │   │   └── tokio-macros v2.4.0 (proc-macro)
│   │   │   │   │   │       ├── proc-macro2 v1.0.86 (*)
│   │   │   │   │   │       ├── quote v1.0.37 (*)
│   │   │   │   │   │       └── syn v2.0.79 (*)
│   │   │   │   │   ├── tracing v0.1.40 (*)
│   │   │   │   │   └── url v2.5.2 (*)
│   │   │   │   ├── hickory-resolver v0.25.0-alpha.2
│   │   │   │   │   ├── cfg-if v1.0.0
│   │   │   │   │   ├── futures-util v0.3.30 (*)
│   │   │   │   │   ├── hickory-proto v0.25.0-alpha.2 (*)
│   │   │   │   │   ├── lru-cache v0.1.2
│   │   │   │   │   │   └── linked-hash-map v0.5.6
│   │   │   │   │   ├── once_cell v1.19.0
│   │   │   │   │   ├── parking_lot v0.12.3 (*)
│   │   │   │   │   ├── rand v0.8.5 (*)
│   │   │   │   │   ├── resolv-conf v0.7.0
│   │   │   │   │   │   ├── hostname v0.3.1
│   │   │   │   │   │   │   ├── libc v0.2.159
│   │   │   │   │   │   │   └── match_cfg v0.1.0
│   │   │   │   │   │   └── quick-error v1.2.3
│   │   │   │   │   ├── smallvec v1.13.2 (*)
│   │   │   │   │   ├── thiserror v1.0.64 (*)
│   │   │   │   │   ├── tokio v1.40.0 (*)
│   │   │   │   │   └── tracing v0.1.40 (*)
│   │   │   │   ├── hostname v0.3.1 (*)
│   │   │   │   ├── http v1.1.0
│   │   │   │   │   ├── bytes v1.7.2
│   │   │   │   │   ├── fnv v1.0.7
│   │   │   │   │   └── itoa v1.0.11
│   │   │   │   ├── http-body-util v0.1.2
│   │   │   │   │   ├── bytes v1.7.2
│   │   │   │   │   ├── futures-util v0.3.30 (*)
│   │   │   │   │   ├── http v1.1.0 (*)
│   │   │   │   │   ├── http-body v1.0.1
│   │   │   │   │   │   ├── bytes v1.7.2
│   │   │   │   │   │   └── http v1.1.0 (*)
│   │   │   │   │   └── pin-project-lite v0.2.14
│   │   │   │   ├── hyper v1.4.1
│   │   │   │   │   ├── bytes v1.7.2
│   │   │   │   │   ├── futures-channel v0.3.30 (*)
│   │   │   │   │   ├── futures-util v0.3.30 (*)
│   │   │   │   │   ├── h2 v0.4.6
│   │   │   │   │   │   ├── atomic-waker v1.1.2
│   │   │   │   │   │   ├── bytes v1.7.2
│   │   │   │   │   │   ├── fnv v1.0.7
│   │   │   │   │   │   ├── futures-core v0.3.30
│   │   │   │   │   │   ├── futures-sink v0.3.30
│   │   │   │   │   │   ├── http v1.1.0 (*)
│   │   │   │   │   │   ├── indexmap v2.5.0 (*)
│   │   │   │   │   │   ├── slab v0.4.9 (*)
│   │   │   │   │   │   ├── tokio v1.40.0 (*)
│   │   │   │   │   │   ├── tokio-util v0.7.12
│   │   │   │   │   │   │   ├── bytes v1.7.2
│   │   │   │   │   │   │   ├── futures-core v0.3.30
│   │   │   │   │   │   │   ├── futures-sink v0.3.30
│   │   │   │   │   │   │   ├── futures-util v0.3.30 (*)
│   │   │   │   │   │   │   ├── pin-project-lite v0.2.14
│   │   │   │   │   │   │   └── tokio v1.40.0 (*)
│   │   │   │   │   │   └── tracing v0.1.40 (*)
│   │   │   │   │   ├── http v1.1.0 (*)
│   │   │   │   │   ├── http-body v1.0.1 (*)
│   │   │   │   │   ├── httparse v1.9.4
│   │   │   │   │   ├── httpdate v1.0.3
│   │   │   │   │   ├── itoa v1.0.11
│   │   │   │   │   ├── pin-project-lite v0.2.14
│   │   │   │   │   ├── smallvec v1.13.2 (*)
│   │   │   │   │   ├── tokio v1.40.0 (*)
│   │   │   │   │   └── want v0.3.1
│   │   │   │   │       └── try-lock v0.2.5
│   │   │   │   ├── hyper-util v0.1.9
│   │   │   │   │   ├── bytes v1.7.2
│   │   │   │   │   ├── futures-channel v0.3.30 (*)
│   │   │   │   │   ├── futures-util v0.3.30 (*)
│   │   │   │   │   ├── http v1.1.0 (*)
│   │   │   │   │   ├── http-body v1.0.1 (*)
│   │   │   │   │   ├── hyper v1.4.1 (*)
│   │   │   │   │   ├── pin-project-lite v0.2.14
│   │   │   │   │   ├── socket2 v0.5.7 (*)
│   │   │   │   │   ├── tokio v1.40.0 (*)
│   │   │   │   │   ├── tower-service v0.3.3
│   │   │   │   │   └── tracing v0.1.40 (*)
│   │   │   │   ├── igd-next v0.15.1
│   │   │   │   │   ├── async-trait v0.1.83 (proc-macro) (*)
│   │   │   │   │   ├── attohttpc v0.24.1
│   │   │   │   │   │   ├── http v0.2.12
│   │   │   │   │   │   │   ├── bytes v1.7.2
│   │   │   │   │   │   │   ├── fnv v1.0.7
│   │   │   │   │   │   │   └── itoa v1.0.11
│   │   │   │   │   │   ├── log v0.4.22
│   │   │   │   │   │   └── url v2.5.2 (*)
│   │   │   │   │   ├── bytes v1.7.2
│   │   │   │   │   ├── futures v0.3.30 (*)
│   │   │   │   │   ├── http v1.1.0 (*)
│   │   │   │   │   ├── http-body-util v0.1.2 (*)
│   │   │   │   │   ├── hyper v1.4.1 (*)
│   │   │   │   │   ├── hyper-util v0.1.9 (*)
│   │   │   │   │   ├── log v0.4.22
│   │   │   │   │   ├── rand v0.8.5 (*)
│   │   │   │   │   ├── tokio v1.40.0 (*)
│   │   │   │   │   ├── url v2.5.2 (*)
│   │   │   │   │   └── xmltree v0.10.3
│   │   │   │   │       └── xml-rs v0.8.22
│   │   │   │   ├── iroh-base v0.27.0
│   │   │   │   │   ├── aead v0.5.2
│   │   │   │   │   │   ├── bytes v1.7.2
│   │   │   │   │   │   ├── crypto-common v0.1.6 (*)
│   │   │   │   │   │   └── generic-array v0.14.7 (*)
│   │   │   │   │   ├── anyhow v1.0.89
│   │   │   │   │   ├── crypto_box v0.9.1
│   │   │   │   │   │   ├── aead v0.5.2 (*)
│   │   │   │   │   │   ├── chacha20 v0.9.1
│   │   │   │   │   │   │   ├── cfg-if v1.0.0
│   │   │   │   │   │   │   ├── cipher v0.4.4
│   │   │   │   │   │   │   │   ├── crypto-common v0.1.6 (*)
│   │   │   │   │   │   │   │   ├── inout v0.1.3
│   │   │   │   │   │   │   │   │   └── generic-array v0.14.7 (*)
│   │   │   │   │   │   │   │   └── zeroize v1.8.1
│   │   │   │   │   │   │   └── cpufeatures v0.2.14
│   │   │   │   │   │   ├── crypto_secretbox v0.1.1
│   │   │   │   │   │   │   ├── aead v0.5.2 (*)
│   │   │   │   │   │   │   ├── chacha20 v0.9.1 (*)
│   │   │   │   │   │   │   ├── cipher v0.4.4 (*)
│   │   │   │   │   │   │   ├── generic-array v0.14.7 (*)
│   │   │   │   │   │   │   ├── poly1305 v0.8.0
│   │   │   │   │   │   │   │   ├── cpufeatures v0.2.14
│   │   │   │   │   │   │   │   ├── opaque-debug v0.3.1
│   │   │   │   │   │   │   │   └── universal-hash v0.5.1
│   │   │   │   │   │   │   │       ├── crypto-common v0.1.6 (*)
│   │   │   │   │   │   │   │       └── subtle v2.6.1
│   │   │   │   │   │   │   ├── salsa20 v0.10.2
│   │   │   │   │   │   │   │   └── cipher v0.4.4 (*)
│   │   │   │   │   │   │   ├── subtle v2.6.1
│   │   │   │   │   │   │   └── zeroize v1.8.1
│   │   │   │   │   │   ├── curve25519-dalek v4.1.3
│   │   │   │   │   │   │   ├── cfg-if v1.0.0
│   │   │   │   │   │   │   ├── cpufeatures v0.2.14
│   │   │   │   │   │   │   ├── curve25519-dalek-derive v0.1.1 (proc-macro)
│   │   │   │   │   │   │   │   ├── proc-macro2 v1.0.86 (*)
│   │   │   │   │   │   │   │   ├── quote v1.0.37 (*)
│   │   │   │   │   │   │   │   └── syn v2.0.79 (*)
│   │   │   │   │   │   │   ├── digest v0.10.7 (*)
│   │   │   │   │   │   │   ├── subtle v2.6.1
│   │   │   │   │   │   │   └── zeroize v1.8.1
│   │   │   │   │   │   │   [build-dependencies]
│   │   │   │   │   │   │   └── rustc_version v0.4.1
│   │   │   │   │   │   │       └── semver v1.0.23
│   │   │   │   │   │   ├── salsa20 v0.10.2 (*)
│   │   │   │   │   │   ├── serdect v0.2.0
│   │   │   │   │   │   │   ├── base16ct v0.2.0
│   │   │   │   │   │   │   └── serde v1.0.210 (*)
│   │   │   │   │   │   ├── subtle v2.6.1
│   │   │   │   │   │   └── zeroize v1.8.1
│   │   │   │   │   ├── data-encoding v2.6.0
│   │   │   │   │   ├── derive_more v1.0.0 (*)
│   │   │   │   │   ├── ed25519-dalek v2.1.1
│   │   │   │   │   │   ├── curve25519-dalek v4.1.3 (*)
│   │   │   │   │   │   ├── ed25519 v2.2.3
│   │   │   │   │   │   │   ├── serde v1.0.210 (*)
│   │   │   │   │   │   │   └── signature v2.2.0
│   │   │   │   │   │   ├── rand_core v0.6.4 (*)
│   │   │   │   │   │   ├── serde v1.0.210 (*)
│   │   │   │   │   │   ├── sha2 v0.10.8 (*)
│   │   │   │   │   │   ├── subtle v2.6.1
│   │   │   │   │   │   └── zeroize v1.8.1
│   │   │   │   │   ├── getrandom v0.2.15 (*)
│   │   │   │   │   ├── hex v0.4.3
│   │   │   │   │   ├── iroh-blake3 v1.4.5
│   │   │   │   │   │   ├── arrayref v0.3.9
│   │   │   │   │   │   ├── arrayvec v0.7.6
│   │   │   │   │   │   ├── cfg-if v1.0.0
│   │   │   │   │   │   └── constant_time_eq v0.3.1
│   │   │   │   │   │   [build-dependencies]
│   │   │   │   │   │   └── cc v1.1.22 (*)
│   │   │   │   │   ├── once_cell v1.19.0
│   │   │   │   │   ├── postcard v1.0.10
│   │   │   │   │   │   ├── cobs v0.2.3
│   │   │   │   │   │   ├── heapless v0.7.17
│   │   │   │   │   │   │   ├── hash32 v0.2.1
│   │   │   │   │   │   │   │   └── byteorder v1.5.0
│   │   │   │   │   │   │   ├── serde v1.0.210 (*)
│   │   │   │   │   │   │   ├── spin v0.9.8 (*)
│   │   │   │   │   │   │   └── stable_deref_trait v1.2.0
│   │   │   │   │   │   │   [build-dependencies]
│   │   │   │   │   │   │   └── rustc_version v0.4.1 (*)
│   │   │   │   │   │   ├── postcard-derive v0.1.2 (proc-macro)
│   │   │   │   │   │   │   ├── proc-macro2 v1.0.86 (*)
│   │   │   │   │   │   │   ├── quote v1.0.37 (*)
│   │   │   │   │   │   │   └── syn v1.0.109 (*)
│   │   │   │   │   │   └── serde v1.0.210 (*)
│   │   │   │   │   ├── rand v0.8.5 (*)
│   │   │   │   │   ├── rand_core v0.6.4 (*)
│   │   │   │   │   ├── serde v1.0.210 (*)
│   │   │   │   │   ├── serde-error v0.1.2
│   │   │   │   │   │   └── serde v1.0.210 (*)
│   │   │   │   │   ├── ssh-key v0.6.6
│   │   │   │   │   │   ├── ed25519-dalek v2.1.1 (*)
│   │   │   │   │   │   ├── rand_core v0.6.4 (*)
│   │   │   │   │   │   ├── sec1 v0.7.3
│   │   │   │   │   │   │   ├── base16ct v0.2.0
│   │   │   │   │   │   │   └── generic-array v0.14.7 (*)
│   │   │   │   │   │   ├── sha2 v0.10.8 (*)
│   │   │   │   │   │   ├── signature v2.2.0
│   │   │   │   │   │   ├── ssh-cipher v0.2.0
│   │   │   │   │   │   │   ├── cipher v0.4.4 (*)
│   │   │   │   │   │   │   └── ssh-encoding v0.2.0
│   │   │   │   │   │   │       ├── base64ct v1.6.0
│   │   │   │   │   │   │       ├── pem-rfc7468 v0.7.0
│   │   │   │   │   │   │       │   └── base64ct v1.6.0
│   │   │   │   │   │   │       └── sha2 v0.10.8 (*)
│   │   │   │   │   │   ├── ssh-encoding v0.2.0 (*)
│   │   │   │   │   │   ├── subtle v2.6.1
│   │   │   │   │   │   └── zeroize v1.8.1
│   │   │   │   │   ├── thiserror v1.0.64 (*)
│   │   │   │   │   ├── ttl_cache v0.5.1
│   │   │   │   │   │   └── linked-hash-map v0.5.6
│   │   │   │   │   ├── url v2.5.2 (*)
│   │   │   │   │   └── zeroize v1.8.1
│   │   │   │   ├── iroh-metrics v0.27.0
│   │   │   │   │   ├── anyhow v1.0.89
│   │   │   │   │   ├── erased_set v0.7.0
│   │   │   │   │   ├── http-body-util v0.1.2 (*)
│   │   │   │   │   ├── hyper v1.4.1 (*)
│   │   │   │   │   ├── hyper-util v0.1.9 (*)
│   │   │   │   │   ├── once_cell v1.19.0
│   │   │   │   │   ├── prometheus-client v0.22.3
│   │   │   │   │   │   ├── dtoa v1.0.9
│   │   │   │   │   │   ├── itoa v1.0.11
│   │   │   │   │   │   ├── parking_lot v0.12.3 (*)
│   │   │   │   │   │   └── prometheus-client-derive-encode v0.4.2 (proc-macro)
│   │   │   │   │   │       ├── proc-macro2 v1.0.86 (*)
│   │   │   │   │   │       ├── quote v1.0.37 (*)
│   │   │   │   │   │       └── syn v2.0.79 (*)
│   │   │   │   │   ├── reqwest v0.12.7
│   │   │   │   │   │   ├── base64 v0.22.1
│   │   │   │   │   │   ├── bytes v1.7.2
│   │   │   │   │   │   ├── futures-core v0.3.30
│   │   │   │   │   │   ├── futures-util v0.3.30 (*)
│   │   │   │   │   │   ├── http v1.1.0 (*)
│   │   │   │   │   │   ├── http-body v1.0.1 (*)
│   │   │   │   │   │   ├── http-body-util v0.1.2 (*)
│   │   │   │   │   │   ├── hyper v1.4.1 (*)
│   │   │   │   │   │   ├── hyper-rustls v0.27.3
│   │   │   │   │   │   │   ├── futures-util v0.3.30 (*)
│   │   │   │   │   │   │   ├── http v1.1.0 (*)
│   │   │   │   │   │   │   ├── hyper v1.4.1 (*)
│   │   │   │   │   │   │   ├── hyper-util v0.1.9 (*)
│   │   │   │   │   │   │   ├── rustls v0.23.13 (*)
│   │   │   │   │   │   │   ├── rustls-pki-types v1.9.0
│   │   │   │   │   │   │   ├── tokio v1.40.0 (*)
│   │   │   │   │   │   │   ├── tokio-rustls v0.26.0
│   │   │   │   │   │   │   │   ├── rustls v0.23.13 (*)
│   │   │   │   │   │   │   │   ├── rustls-pki-types v1.9.0
│   │   │   │   │   │   │   │   └── tokio v1.40.0 (*)
│   │   │   │   │   │   │   ├── tower-service v0.3.3
│   │   │   │   │   │   │   └── webpki-roots v0.26.6 (*)
│   │   │   │   │   │   ├── hyper-util v0.1.9 (*)
│   │   │   │   │   │   ├── ipnet v2.10.0
│   │   │   │   │   │   ├── log v0.4.22
│   │   │   │   │   │   ├── mime v0.3.17
│   │   │   │   │   │   ├── once_cell v1.19.0
│   │   │   │   │   │   ├── percent-encoding v2.3.1
│   │   │   │   │   │   ├── pin-project-lite v0.2.14
│   │   │   │   │   │   ├── rustls v0.23.13 (*)
│   │   │   │   │   │   ├── rustls-pemfile v2.1.3
│   │   │   │   │   │   │   ├── base64 v0.22.1
│   │   │   │   │   │   │   └── rustls-pki-types v1.9.0
│   │   │   │   │   │   ├── rustls-pki-types v1.9.0
│   │   │   │   │   │   ├── serde v1.0.210 (*)
│   │   │   │   │   │   ├── serde_json v1.0.128 (*)
│   │   │   │   │   │   ├── serde_urlencoded v0.7.1
│   │   │   │   │   │   │   ├── form_urlencoded v1.2.1 (*)
│   │   │   │   │   │   │   ├── itoa v1.0.11
│   │   │   │   │   │   │   ├── ryu v1.0.18
│   │   │   │   │   │   │   └── serde v1.0.210 (*)
│   │   │   │   │   │   ├── sync_wrapper v1.0.1
│   │   │   │   │   │   │   └── futures-core v0.3.30
│   │   │   │   │   │   ├── tokio v1.40.0 (*)
│   │   │   │   │   │   ├── tokio-rustls v0.26.0 (*)
│   │   │   │   │   │   ├── tower-service v0.3.3
│   │   │   │   │   │   ├── url v2.5.2 (*)
│   │   │   │   │   │   └── webpki-roots v0.26.6 (*)
│   │   │   │   │   ├── serde v1.0.210 (*)
│   │   │   │   │   ├── struct_iterable v0.1.1
│   │   │   │   │   │   ├── struct_iterable_derive v0.1.0 (proc-macro)
│   │   │   │   │   │   │   ├── erased-serde v0.3.31 (*)
│   │   │   │   │   │   │   ├── proc-macro2 v1.0.86 (*)
│   │   │   │   │   │   │   ├── quote v1.0.37 (*)
│   │   │   │   │   │   │   ├── struct_iterable_internal v0.1.1
│   │   │   │   │   │   │   └── syn v2.0.79 (*)
│   │   │   │   │   │   └── struct_iterable_internal v0.1.1
│   │   │   │   │   ├── time v0.3.36 (*)
│   │   │   │   │   ├── tokio v1.40.0 (*)
│   │   │   │   │   └── tracing v0.1.40 (*)
│   │   │   │   ├── iroh-quinn v0.11.3
│   │   │   │   │   ├── bytes v1.7.2
│   │   │   │   │   ├── iroh-quinn-proto v0.11.6
│   │   │   │   │   │   ├── bytes v1.7.2
│   │   │   │   │   │   ├── rand v0.8.5 (*)
│   │   │   │   │   │   ├── ring v0.17.8 (*)
│   │   │   │   │   │   ├── rustc-hash v2.0.0
│   │   │   │   │   │   ├── rustls v0.23.13 (*)
│   │   │   │   │   │   ├── rustls-platform-verifier v0.3.4
│   │   │   │   │   │   │   ├── log v0.4.22
│   │   │   │   │   │   │   ├── once_cell v1.19.0
│   │   │   │   │   │   │   ├── rustls v0.23.13 (*)
│   │   │   │   │   │   │   ├── rustls-native-certs v0.7.3
│   │   │   │   │   │   │   │   ├── openssl-probe v0.1.5
│   │   │   │   │   │   │   │   ├── rustls-pemfile v2.1.3 (*)
│   │   │   │   │   │   │   │   └── rustls-pki-types v1.9.0
│   │   │   │   │   │   │   └── rustls-webpki v0.102.8 (*)
│   │   │   │   │   │   ├── slab v0.4.9 (*)
│   │   │   │   │   │   ├── thiserror v1.0.64 (*)
│   │   │   │   │   │   ├── tinyvec v1.8.0 (*)
│   │   │   │   │   │   └── tracing v0.1.40 (*)
│   │   │   │   │   ├── iroh-quinn-udp v0.5.4
│   │   │   │   │   │   ├── libc v0.2.159
│   │   │   │   │   │   ├── socket2 v0.5.7 (*)
│   │   │   │   │   │   └── tracing v0.1.40 (*)
│   │   │   │   │   ├── pin-project-lite v0.2.14
│   │   │   │   │   ├── rustc-hash v2.0.0
│   │   │   │   │   ├── rustls v0.23.13 (*)
│   │   │   │   │   ├── socket2 v0.5.7 (*)
│   │   │   │   │   ├── thiserror v1.0.64 (*)
│   │   │   │   │   ├── tokio v1.40.0 (*)
│   │   │   │   │   └── tracing v0.1.40 (*)
│   │   │   │   ├── iroh-quinn-proto v0.11.6 (*)
│   │   │   │   ├── iroh-quinn-udp v0.5.4 (*)
│   │   │   │   ├── libc v0.2.159
│   │   │   │   ├── netdev v0.30.0
│   │   │   │   │   └── libc v0.2.159
│   │   │   │   ├── netlink-packet-core v0.7.0
│   │   │   │   │   ├── anyhow v1.0.89
│   │   │   │   │   ├── byteorder v1.5.0
│   │   │   │   │   └── netlink-packet-utils v0.5.2
│   │   │   │   │       ├── anyhow v1.0.89
│   │   │   │   │       ├── byteorder v1.5.0
│   │   │   │   │       ├── paste v1.0.15 (proc-macro)
│   │   │   │   │       └── thiserror v1.0.64 (*)
│   │   │   │   ├── netlink-packet-route v0.17.1
│   │   │   │   │   ├── anyhow v1.0.89
│   │   │   │   │   ├── bitflags v1.3.2
│   │   │   │   │   ├── byteorder v1.5.0
│   │   │   │   │   ├── libc v0.2.159
│   │   │   │   │   ├── netlink-packet-core v0.7.0 (*)
│   │   │   │   │   └── netlink-packet-utils v0.5.2 (*)
│   │   │   │   ├── netlink-sys v0.8.6
│   │   │   │   │   ├── bytes v1.7.2
│   │   │   │   │   ├── futures v0.3.30 (*)
│   │   │   │   │   ├── libc v0.2.159
│   │   │   │   │   ├── log v0.4.22
│   │   │   │   │   └── tokio v1.40.0 (*)
│   │   │   │   ├── num_enum v0.7.3
│   │   │   │   │   └── num_enum_derive v0.7.3 (proc-macro)
│   │   │   │   │       ├── proc-macro-crate v3.2.0
│   │   │   │   │       │   └── toml_edit v0.22.22
│   │   │   │   │       │       ├── indexmap v2.5.0 (*)
│   │   │   │   │       │       ├── toml_datetime v0.6.8
│   │   │   │   │       │       └── winnow v0.6.20
│   │   │   │   │       ├── proc-macro2 v1.0.86 (*)
│   │   │   │   │       ├── quote v1.0.37 (*)
│   │   │   │   │       └── syn v2.0.79 (*)
│   │   │   │   ├── once_cell v1.19.0
│   │   │   │   ├── parking_lot v0.12.3 (*)
│   │   │   │   ├── pin-project v1.1.5 (*)
│   │   │   │   ├── pkarr v2.2.0
│   │   │   │   │   ├── bytes v1.7.2
│   │   │   │   │   ├── document-features v0.2.10 (proc-macro) (*)
│   │   │   │   │   ├── dyn-clone v1.0.17
│   │   │   │   │   ├── ed25519-dalek v2.1.1 (*)
│   │   │   │   │   ├── flume v0.11.0
│   │   │   │   │   │   ├── futures-core v0.3.30
│   │   │   │   │   │   ├── futures-sink v0.3.30
│   │   │   │   │   │   ├── nanorand v0.7.0
│   │   │   │   │   │   │   └── getrandom v0.2.15 (*)
│   │   │   │   │   │   └── spin v0.9.8 (*)
│   │   │   │   │   ├── lru v0.12.4
│   │   │   │   │   ├── mainline v2.0.1
│   │   │   │   │   │   ├── bytes v1.7.2
│   │   │   │   │   │   ├── crc v3.2.1
│   │   │   │   │   │   │   └── crc-catalog v2.4.0
│   │   │   │   │   │   ├── ed25519-dalek v2.1.1 (*)
│   │   │   │   │   │   ├── flume v0.11.0 (*)
│   │   │   │   │   │   ├── lru v0.12.4
│   │   │   │   │   │   ├── rand v0.8.5 (*)
│   │   │   │   │   │   ├── serde v1.0.210 (*)
│   │   │   │   │   │   ├── serde_bencode v0.2.4
│   │   │   │   │   │   │   ├── serde v1.0.210 (*)
│   │   │   │   │   │   │   └── serde_bytes v0.11.15
│   │   │   │   │   │   │       └── serde v1.0.210 (*)
│   │   │   │   │   │   ├── serde_bytes v0.11.15 (*)
│   │   │   │   │   │   ├── sha1_smol v1.0.1
│   │   │   │   │   │   ├── thiserror v1.0.64 (*)
│   │   │   │   │   │   └── tracing v0.1.40 (*)
│   │   │   │   │   ├── self_cell v1.0.4
│   │   │   │   │   ├── simple-dns v0.6.2
│   │   │   │   │   │   └── bitflags v2.6.0
│   │   │   │   │   ├── thiserror v1.0.64 (*)
│   │   │   │   │   ├── tracing v0.1.40 (*)
│   │   │   │   │   ├── ureq v2.10.1 (*)
│   │   │   │   │   └── z32 v1.1.1
│   │   │   │   ├── postcard v1.0.10 (*)
│   │   │   │   ├── rand v0.8.5 (*)
│   │   │   │   ├── rcgen v0.12.1
│   │   │   │   │   ├── pem v3.0.4
│   │   │   │   │   │   └── base64 v0.22.1
│   │   │   │   │   ├── ring v0.17.8 (*)
│   │   │   │   │   ├── time v0.3.36 (*)
│   │   │   │   │   └── yasna v0.5.2
│   │   │   │   │       └── time v0.3.36 (*)
│   │   │   │   ├── reqwest v0.12.7 (*)
│   │   │   │   ├── ring v0.17.8 (*)
│   │   │   │   ├── rtnetlink v0.13.1
│   │   │   │   │   ├── futures v0.3.30 (*)
│   │   │   │   │   ├── log v0.4.22
│   │   │   │   │   ├── netlink-packet-core v0.7.0 (*)
│   │   │   │   │   ├── netlink-packet-route v0.17.1 (*)
│   │   │   │   │   ├── netlink-packet-utils v0.5.2 (*)
│   │   │   │   │   ├── netlink-proto v0.11.3
│   │   │   │   │   │   ├── bytes v1.7.2
│   │   │   │   │   │   ├── futures v0.3.30 (*)
│   │   │   │   │   │   ├── log v0.4.22
│   │   │   │   │   │   ├── netlink-packet-core v0.7.0 (*)
│   │   │   │   │   │   ├── netlink-sys v0.8.6 (*)
│   │   │   │   │   │   ├── thiserror v1.0.64 (*)
│   │   │   │   │   │   └── tokio v1.40.0 (*)
│   │   │   │   │   ├── netlink-sys v0.8.6 (*)
│   │   │   │   │   ├── nix v0.26.4
│   │   │   │   │   │   ├── bitflags v1.3.2
│   │   │   │   │   │   ├── cfg-if v1.0.0
│   │   │   │   │   │   └── libc v0.2.159
│   │   │   │   │   ├── thiserror v1.0.64 (*)
│   │   │   │   │   └── tokio v1.40.0 (*)
│   │   │   │   ├── rustls v0.23.13 (*)
│   │   │   │   ├── rustls-webpki v0.102.8 (*)
│   │   │   │   ├── serde v1.0.210 (*)
│   │   │   │   ├── smallvec v1.13.2 (*)
│   │   │   │   ├── socket2 v0.5.7 (*)
│   │   │   │   ├── strum v0.26.3
│   │   │   │   │   └── strum_macros v0.26.4 (proc-macro)
│   │   │   │   │       ├── heck v0.5.0
│   │   │   │   │       ├── proc-macro2 v1.0.86 (*)
│   │   │   │   │       ├── quote v1.0.37 (*)
│   │   │   │   │       ├── rustversion v1.0.17 (proc-macro)
│   │   │   │   │       └── syn v2.0.79 (*)
│   │   │   │   ├── stun-rs v0.1.8
│   │   │   │   │   ├── base64 v0.22.1
│   │   │   │   │   ├── bounded-integer v0.5.7
│   │   │   │   │   ├── byteorder v1.5.0
│   │   │   │   │   ├── crc v3.2.1 (*)
│   │   │   │   │   ├── enumflags2 v0.7.10
│   │   │   │   │   │   └── enumflags2_derive v0.7.10 (proc-macro)
│   │   │   │   │   │       ├── proc-macro2 v1.0.86 (*)
│   │   │   │   │   │       ├── quote v1.0.37 (*)
│   │   │   │   │   │       └── syn v2.0.79 (*)
│   │   │   │   │   ├── fallible-iterator v0.3.0
│   │   │   │   │   ├── hmac-sha1 v0.2.2
│   │   │   │   │   │   ├── hmac v0.12.1
│   │   │   │   │   │   │   └── digest v0.10.7 (*)
│   │   │   │   │   │   └── sha1 v0.10.6
│   │   │   │   │   │       ├── cfg-if v1.0.0
│   │   │   │   │   │       ├── cpufeatures v0.2.14
│   │   │   │   │   │       └── digest v0.10.7 (*)
│   │   │   │   │   ├── hmac-sha256 v1.1.7
│   │   │   │   │   ├── hostname-validator v1.1.1
│   │   │   │   │   ├── lazy_static v1.5.0
│   │   │   │   │   ├── md5 v0.7.0
│   │   │   │   │   ├── paste v1.0.15 (proc-macro)
│   │   │   │   │   ├── precis-core v0.1.10
│   │   │   │   │   │   └── unicode-normalization v0.1.24 (*)
│   │   │   │   │   │   [build-dependencies]
│   │   │   │   │   │   ├── precis-tools v0.1.8
│   │   │   │   │   │   │   ├── lazy_static v1.5.0
│   │   │   │   │   │   │   ├── regex v1.10.6 (*)
│   │   │   │   │   │   │   └── ucd-parse v0.1.13
│   │   │   │   │   │   │       └── regex-lite v0.1.6
│   │   │   │   │   │   └── ucd-parse v0.1.13 (*)
│   │   │   │   │   ├── precis-profiles v0.1.11
│   │   │   │   │   │   ├── lazy_static v1.5.0
│   │   │   │   │   │   ├── precis-core v0.1.10 (*)
│   │   │   │   │   │   └── unicode-normalization v0.1.24 (*)
│   │   │   │   │   │   [build-dependencies]
│   │   │   │   │   │   └── precis-tools v0.1.8 (*)
│   │   │   │   │   ├── quoted-string-parser v0.1.0
│   │   │   │   │   │   ├── pest v2.7.13
│   │   │   │   │   │   │   ├── memchr v2.7.4
│   │   │   │   │   │   │   ├── thiserror v1.0.64 (*)
│   │   │   │   │   │   │   └── ucd-trie v0.1.6
│   │   │   │   │   │   └── pest_derive v2.7.13 (proc-macro)
│   │   │   │   │   │       ├── pest v2.7.13 (*)
│   │   │   │   │   │       └── pest_generator v2.7.13
│   │   │   │   │   │           ├── pest v2.7.13 (*)
│   │   │   │   │   │           ├── pest_meta v2.7.13
│   │   │   │   │   │           │   ├── once_cell v1.19.0
│   │   │   │   │   │           │   └── pest v2.7.13 (*)
│   │   │   │   │   │           │   [build-dependencies]
│   │   │   │   │   │           │   └── sha2 v0.10.8
│   │   │   │   │   │           │       ├── cfg-if v1.0.0
│   │   │   │   │   │           │       ├── cpufeatures v0.2.14
│   │   │   │   │   │           │       └── digest v0.10.7
│   │   │   │   │   │           │           ├── block-buffer v0.10.4 (*)
│   │   │   │   │   │           │           └── crypto-common v0.1.6
│   │   │   │   │   │           │               ├── generic-array v0.14.7
│   │   │   │   │   │           │               │   └── typenum v1.17.0
│   │   │   │   │   │           │               │   [build-dependencies]
│   │   │   │   │   │           │               │   └── version_check v0.9.5
│   │   │   │   │   │           │               └── typenum v1.17.0
│   │   │   │   │   │           ├── proc-macro2 v1.0.86 (*)
│   │   │   │   │   │           ├── quote v1.0.37 (*)
│   │   │   │   │   │           └── syn v2.0.79 (*)
│   │   │   │   │   └── rand v0.8.5 (*)
│   │   │   │   ├── surge-ping v0.8.1
│   │   │   │   │   ├── hex v0.4.3
│   │   │   │   │   ├── parking_lot v0.12.3 (*)
│   │   │   │   │   ├── pnet_packet v0.34.0
│   │   │   │   │   │   ├── pnet_base v0.34.0
│   │   │   │   │   │   │   └── no-std-net v0.6.0
│   │   │   │   │   │   ├── pnet_macros v0.34.0 (proc-macro)
│   │   │   │   │   │   │   ├── proc-macro2 v1.0.86 (*)
│   │   │   │   │   │   │   ├── quote v1.0.37 (*)
│   │   │   │   │   │   │   ├── regex v1.10.6 (*)
│   │   │   │   │   │   │   └── syn v2.0.79 (*)
│   │   │   │   │   │   └── pnet_macros_support v0.34.0
│   │   │   │   │   │       └── pnet_base v0.34.0 (*)
│   │   │   │   │   │   [build-dependencies]
│   │   │   │   │   │   └── glob v0.3.1
│   │   │   │   │   ├── rand v0.8.5 (*)
│   │   │   │   │   ├── socket2 v0.5.7 (*)
│   │   │   │   │   ├── thiserror v1.0.64 (*)
│   │   │   │   │   ├── tokio v1.40.0 (*)
│   │   │   │   │   └── tracing v0.1.40 (*)
│   │   │   │   ├── swarm-discovery v0.2.1
│   │   │   │   │   ├── acto v0.7.1
│   │   │   │   │   │   ├── parking_lot v0.12.3 (*)
│   │   │   │   │   │   ├── pin-project-lite v0.2.14
│   │   │   │   │   │   ├── smol_str v0.1.24
│   │   │   │   │   │   ├── tokio v1.40.0 (*)
│   │   │   │   │   │   └── tracing v0.1.40 (*)
│   │   │   │   │   │   [build-dependencies]
│   │   │   │   │   │   └── rustc_version v0.4.1 (*)
│   │   │   │   │   ├── anyhow v1.0.89
│   │   │   │   │   ├── hickory-proto v0.24.1
│   │   │   │   │   │   ├── async-trait v0.1.83 (proc-macro) (*)
│   │   │   │   │   │   ├── cfg-if v1.0.0
│   │   │   │   │   │   ├── data-encoding v2.6.0
│   │   │   │   │   │   ├── enum-as-inner v0.6.1 (proc-macro) (*)
│   │   │   │   │   │   ├── futures-channel v0.3.30 (*)
│   │   │   │   │   │   ├── futures-io v0.3.30
│   │   │   │   │   │   ├── futures-util v0.3.30 (*)
│   │   │   │   │   │   ├── idna v0.4.0
│   │   │   │   │   │   │   ├── unicode-bidi v0.3.15
│   │   │   │   │   │   │   └── unicode-normalization v0.1.24 (*)
│   │   │   │   │   │   ├── ipnet v2.10.0
│   │   │   │   │   │   ├── once_cell v1.19.0
│   │   │   │   │   │   ├── rand v0.8.5 (*)
│   │   │   │   │   │   ├── thiserror v1.0.64 (*)
│   │   │   │   │   │   ├── tinyvec v1.8.0 (*)
│   │   │   │   │   │   ├── tokio v1.40.0 (*)
│   │   │   │   │   │   ├── tracing v0.1.40 (*)
│   │   │   │   │   │   └── url v2.5.2 (*)
│   │   │   │   │   ├── rand v0.8.5 (*)
│   │   │   │   │   ├── socket2 v0.5.7 (*)
│   │   │   │   │   ├── tokio v1.40.0 (*)
│   │   │   │   │   └── tracing v0.1.40 (*)
│   │   │   │   ├── thiserror v1.0.64 (*)
│   │   │   │   ├── time v0.3.36 (*)
│   │   │   │   ├── tokio v1.40.0 (*)
│   │   │   │   ├── tokio-rustls v0.26.0 (*)
│   │   │   │   ├── tokio-stream v0.1.16
│   │   │   │   │   ├── futures-core v0.3.30
│   │   │   │   │   ├── pin-project-lite v0.2.14
│   │   │   │   │   └── tokio v1.40.0 (*)
│   │   │   │   ├── tokio-tungstenite v0.21.0
│   │   │   │   │   ├── futures-util v0.3.30 (*)
│   │   │   │   │   ├── log v0.4.22
│   │   │   │   │   ├── tokio v1.40.0 (*)
│   │   │   │   │   └── tungstenite v0.21.0
│   │   │   │   │       ├── byteorder v1.5.0
│   │   │   │   │       ├── bytes v1.7.2
│   │   │   │   │       ├── data-encoding v2.6.0
│   │   │   │   │       ├── http v1.1.0 (*)
│   │   │   │   │       ├── httparse v1.9.4
│   │   │   │   │       ├── log v0.4.22
│   │   │   │   │       ├── rand v0.8.5 (*)
│   │   │   │   │       ├── sha1 v0.10.6 (*)
│   │   │   │   │       ├── thiserror v1.0.64 (*)
│   │   │   │   │       ├── url v2.5.2 (*)
│   │   │   │   │       └── utf-8 v0.7.6
│   │   │   │   ├── tokio-tungstenite-wasm v0.3.1
│   │   │   │   │   ├── futures-util v0.3.30 (*)
│   │   │   │   │   ├── http v1.1.0 (*)
│   │   │   │   │   ├── httparse v1.9.4
│   │   │   │   │   ├── thiserror v1.0.64 (*)
│   │   │   │   │   ├── tokio v1.40.0 (*)
│   │   │   │   │   └── tokio-tungstenite v0.21.0 (*)
│   │   │   │   ├── tokio-util v0.7.12 (*)
│   │   │   │   ├── tracing v0.1.40 (*)
│   │   │   │   ├── tungstenite v0.21.0 (*)
│   │   │   │   ├── url v2.5.2 (*)
│   │   │   │   ├── watchable v1.1.2
│   │   │   │   │   ├── event-listener v4.0.3 (*)
│   │   │   │   │   ├── futures-util v0.3.30 (*)
│   │   │   │   │   ├── parking_lot v0.12.3 (*)
│   │   │   │   │   └── thiserror v1.0.64 (*)
│   │   │   │   ├── webpki-roots v0.26.6 (*)
│   │   │   │   ├── x509-parser v0.16.0
│   │   │   │   │   ├── asn1-rs v0.6.2
│   │   │   │   │   │   ├── asn1-rs-derive v0.5.1 (proc-macro)
│   │   │   │   │   │   │   ├── proc-macro2 v1.0.86 (*)
│   │   │   │   │   │   │   ├── quote v1.0.37 (*)
│   │   │   │   │   │   │   ├── syn v2.0.79 (*)
│   │   │   │   │   │   │   └── synstructure v0.13.1
│   │   │   │   │   │   │       ├── proc-macro2 v1.0.86 (*)
│   │   │   │   │   │   │       ├── quote v1.0.37 (*)
│   │   │   │   │   │   │       └── syn v2.0.79 (*)
│   │   │   │   │   │   ├── asn1-rs-impl v0.2.0 (proc-macro)
│   │   │   │   │   │   │   ├── proc-macro2 v1.0.86 (*)
│   │   │   │   │   │   │   ├── quote v1.0.37 (*)
│   │   │   │   │   │   │   └── syn v2.0.79 (*)
│   │   │   │   │   │   ├── displaydoc v0.2.5 (proc-macro)
│   │   │   │   │   │   │   ├── proc-macro2 v1.0.86 (*)
│   │   │   │   │   │   │   ├── quote v1.0.37 (*)
│   │   │   │   │   │   │   └── syn v2.0.79 (*)
│   │   │   │   │   │   ├── nom v7.1.3
│   │   │   │   │   │   │   ├── memchr v2.7.4
│   │   │   │   │   │   │   └── minimal-lexical v0.2.1
│   │   │   │   │   │   ├── num-traits v0.2.19 (*)
│   │   │   │   │   │   ├── rusticata-macros v4.1.0
│   │   │   │   │   │   │   └── nom v7.1.3 (*)
│   │   │   │   │   │   ├── thiserror v1.0.64 (*)
│   │   │   │   │   │   └── time v0.3.36 (*)
│   │   │   │   │   ├── data-encoding v2.6.0
│   │   │   │   │   ├── der-parser v9.0.0
│   │   │   │   │   │   ├── asn1-rs v0.6.2 (*)
│   │   │   │   │   │   ├── displaydoc v0.2.5 (proc-macro) (*)
│   │   │   │   │   │   ├── nom v7.1.3 (*)
│   │   │   │   │   │   ├── num-bigint v0.4.6
│   │   │   │   │   │   │   ├── num-integer v0.1.46
│   │   │   │   │   │   │   │   └── num-traits v0.2.19 (*)
│   │   │   │   │   │   │   └── num-traits v0.2.19 (*)
│   │   │   │   │   │   ├── num-traits v0.2.19 (*)
│   │   │   │   │   │   └── rusticata-macros v4.1.0 (*)
│   │   │   │   │   ├── lazy_static v1.5.0
│   │   │   │   │   ├── nom v7.1.3 (*)
│   │   │   │   │   ├── oid-registry v0.7.1
│   │   │   │   │   │   └── asn1-rs v0.6.2 (*)
│   │   │   │   │   ├── rusticata-macros v4.1.0 (*)
│   │   │   │   │   ├── thiserror v1.0.64 (*)
│   │   │   │   │   └── time v0.3.36 (*)
│   │   │   │   └── z32 v1.1.1
│   │   │   │   [build-dependencies]
│   │   │   │   └── duct v0.13.7
│   │   │   │       ├── libc v0.2.159
│   │   │   │       ├── once_cell v1.19.0
│   │   │   │       ├── os_pipe v1.2.1
│   │   │   │       │   └── libc v0.2.159
│   │   │   │       └── shared_child v1.0.1
│   │   │   │           └── libc v0.2.159
│   │   │   └── serde v1.0.210 (*)
│   │   ├── bones_schema v0.4.0 (* git)
│   │   ├── bones_scripting v0.4.0 (* git)
│   │   │   ├── async-channel v1.9.0 (*)
│   │   │   ├── bevy_tasks v0.11.3 (*)
│   │   │   ├── bones_asset v0.4.0 (* git)
│   │   │   ├── bones_lib v0.4.0 (* git)
│   │   │   ├── futures-lite v2.3.0 (*)
│   │   │   ├── gc-arena v0.5.3
│   │   │   │   ├── allocator-api2 v0.2.18
│   │   │   │   ├── gc-arena-derive v0.5.3 (proc-macro)
│   │   │   │   │   ├── proc-macro2 v1.0.86 (*)
│   │   │   │   │   ├── quote v1.0.37 (*)
│   │   │   │   │   ├── syn v2.0.79 (*)
│   │   │   │   │   └── synstructure v0.13.1 (*)
│   │   │   │   ├── hashbrown v0.14.5 (*)
│   │   │   │   └── sptr v0.3.2
│   │   │   ├── gc-arena-derive v0.5.3 (proc-macro) (*)
│   │   │   ├── parking_lot v0.12.3 (*)
│   │   │   ├── piccolo v0.3.3
│   │   │   │   ├── ahash v0.8.11 (*)
│   │   │   │   ├── allocator-api2 v0.2.18
│   │   │   │   ├── anyhow v1.0.89
│   │   │   │   ├── gc-arena v0.5.3 (*)
│   │   │   │   ├── hashbrown v0.14.5 (*)
│   │   │   │   ├── rand v0.8.5 (*)
│   │   │   │   └── thiserror v1.0.64 (*)
│   │   │   ├── send_wrapper v0.6.0
│   │   │   └── tracing v0.1.40 (*)
│   │   ├── bytemuck v1.18.0 (*)
│   │   ├── bytes v1.7.2
│   │   ├── csscolorparser v0.6.2
│   │   │   └── phf v0.11.2
│   │   │       ├── phf_macros v0.11.2 (proc-macro)
│   │   │       │   ├── phf_generator v0.11.2
│   │   │       │   │   ├── phf_shared v0.11.2
│   │   │       │   │   │   └── siphasher v0.3.11
│   │   │       │   │   └── rand v0.8.5
│   │   │       │   │       └── rand_core v0.6.4
│   │   │       │   ├── phf_shared v0.11.2 (*)
│   │   │       │   ├── proc-macro2 v1.0.86 (*)
│   │   │       │   ├── quote v1.0.37 (*)
│   │   │       │   └── syn v2.0.79 (*)
│   │   │       └── phf_shared v0.11.2
│   │   │           └── siphasher v0.3.11
│   │   ├── directories v5.0.1
│   │   │   └── dirs-sys v0.4.1
│   │   │       ├── libc v0.2.159
│   │   │       └── option-ext v0.2.0
│   │   ├── egui v0.23.0 (*)
│   │   ├── egui_plot v0.23.0
│   │   │   └── egui v0.23.0 (*)
│   │   ├── either v1.13.0
│   │   ├── fluent v0.15.0
│   │   │   ├── fluent-bundle v0.15.3
│   │   │   │   ├── fluent-langneg v0.13.0
│   │   │   │   │   └── unic-langid v0.9.5
│   │   │   │   │       └── unic-langid-impl v0.9.5
│   │   │   │   │           ├── serde v1.0.210 (*)
│   │   │   │   │           └── tinystr v0.7.6
│   │   │   │   │               └── displaydoc v0.2.5 (proc-macro) (*)
│   │   │   │   ├── fluent-syntax v0.11.1
│   │   │   │   │   └── thiserror v1.0.64 (*)
│   │   │   │   ├── intl-memoizer v0.5.2
│   │   │   │   │   ├── type-map v0.5.0
│   │   │   │   │   │   └── rustc-hash v1.1.0
│   │   │   │   │   └── unic-langid v0.9.5 (*)
│   │   │   │   ├── intl_pluralrules v7.0.2
│   │   │   │   │   └── unic-langid v0.9.5 (*)
│   │   │   │   ├── rustc-hash v1.1.0
│   │   │   │   ├── self_cell v0.10.3
│   │   │   │   │   └── self_cell v1.0.4
│   │   │   │   ├── smallvec v1.13.2 (*)
│   │   │   │   └── unic-langid v0.9.5 (*)
│   │   │   └── unic-langid v0.9.5 (*)
│   │   ├── fluent-langneg v0.13.0 (*)
│   │   ├── futures-lite v2.3.0 (*)
│   │   ├── ggrs v0.10.1 (* git)
│   │   │   ├── bincode v1.3.3
│   │   │   │   └── serde v1.0.210 (*)
│   │   │   ├── bitfield-rle v0.2.1
│   │   │   │   ├── anyhow v1.0.89
│   │   │   │   └── varinteger v1.0.6
│   │   │   ├── bytemuck v1.18.0 (*)
│   │   │   ├── instant v0.1.13 (*)
│   │   │   ├── parking_lot v0.12.3 (*)
│   │   │   ├── rand v0.8.5 (*)
│   │   │   └── serde v1.0.210 (*)
│   │   ├── gilrs v0.11.0
│   │   │   ├── fnv v1.0.7
│   │   │   ├── gilrs-core v0.6.0
│   │   │   │   ├── inotify v0.11.0
│   │   │   │   │   ├── bitflags v2.6.0
│   │   │   │   │   ├── inotify-sys v0.1.5 (*)
│   │   │   │   │   └── libc v0.2.159
│   │   │   │   ├── libc v0.2.159
│   │   │   │   ├── libudev-sys v0.1.4
│   │   │   │   │   └── libc v0.2.159
│   │   │   │   │   [build-dependencies]
│   │   │   │   │   └── pkg-config v0.3.31
│   │   │   │   ├── log v0.4.22
│   │   │   │   ├── nix v0.29.0
│   │   │   │   │   ├── bitflags v2.6.0
│   │   │   │   │   ├── cfg-if v1.0.0
│   │   │   │   │   └── libc v0.2.159
│   │   │   │   │   [build-dependencies]
│   │   │   │   │   └── cfg_aliases v0.2.1
│   │   │   │   ├── uuid v1.10.0 (*)
│   │   │   │   └── vec_map v0.8.2
│   │   │   ├── log v0.4.22
│   │   │   ├── uuid v1.10.0 (*)
│   │   │   └── vec_map v0.8.2
│   │   ├── glam v0.24.2 (*)
│   │   ├── hex v0.4.3
│   │   ├── image v0.24.9 (*)
│   │   ├── instant v0.1.13 (*)
│   │   ├── intl-memoizer v0.5.2 (*)
│   │   ├── iroh-net v0.27.0 (*)
│   │   ├── iroh-quinn v0.11.3 (*)
│   │   ├── kira v0.9.5
│   │   │   ├── cpal v0.15.3
│   │   │   │   ├── alsa v0.9.1
│   │   │   │   │   ├── alsa-sys v0.3.1
│   │   │   │   │   │   └── libc v0.2.159
│   │   │   │   │   │   [build-dependencies]
│   │   │   │   │   │   └── pkg-config v0.3.31
│   │   │   │   │   ├── bitflags v2.6.0
│   │   │   │   │   ├── cfg-if v1.0.0
│   │   │   │   │   └── libc v0.2.159
│   │   │   │   ├── dasp_sample v0.11.0
│   │   │   │   └── libc v0.2.159
│   │   │   ├── glam v0.29.0
│   │   │   │   └── mint v0.5.9
│   │   │   ├── mint v0.5.9
│   │   │   ├── paste v1.0.15 (proc-macro)
│   │   │   ├── ringbuf v0.3.3
│   │   │   │   └── crossbeam-utils v0.8.20
│   │   │   ├── symphonia v0.5.4
│   │   │   │   ├── lazy_static v1.5.0
│   │   │   │   ├── symphonia-codec-vorbis v0.5.4
│   │   │   │   │   ├── log v0.4.22
│   │   │   │   │   ├── symphonia-core v0.5.4
│   │   │   │   │   │   ├── arrayvec v0.7.6
│   │   │   │   │   │   ├── bitflags v1.3.2
│   │   │   │   │   │   ├── bytemuck v1.18.0 (*)
│   │   │   │   │   │   ├── lazy_static v1.5.0
│   │   │   │   │   │   └── log v0.4.22
│   │   │   │   │   └── symphonia-utils-xiph v0.5.4
│   │   │   │   │       ├── symphonia-core v0.5.4 (*)
│   │   │   │   │       └── symphonia-metadata v0.5.4
│   │   │   │   │           ├── encoding_rs v0.8.34
│   │   │   │   │           │   └── cfg-if v1.0.0
│   │   │   │   │           ├── lazy_static v1.5.0
│   │   │   │   │           ├── log v0.4.22
│   │   │   │   │           └── symphonia-core v0.5.4 (*)
│   │   │   │   ├── symphonia-core v0.5.4 (*)
│   │   │   │   ├── symphonia-format-ogg v0.5.4
│   │   │   │   │   ├── log v0.4.22
│   │   │   │   │   ├── symphonia-core v0.5.4 (*)
│   │   │   │   │   ├── symphonia-metadata v0.5.4 (*)
│   │   │   │   │   └── symphonia-utils-xiph v0.5.4 (*)
│   │   │   │   └── symphonia-metadata v0.5.4 (*)
│   │   │   └── triple_buffer v8.0.0
│   │   │       └── crossbeam-utils v0.8.20
│   │   ├── mdns-sd v0.10.5
│   │   │   ├── flume v0.11.0 (*)
│   │   │   ├── if-addrs v0.10.2
│   │   │   │   └── libc v0.2.159
│   │   │   ├── polling v2.8.0
│   │   │   │   ├── cfg-if v1.0.0
│   │   │   │   ├── libc v0.2.159
│   │   │   │   └── log v0.4.22
│   │   │   │   [build-dependencies]
│   │   │   │   └── autocfg v1.4.0
│   │   │   └── socket2 v0.5.7 (*)
│   │   ├── noise v0.9.0
│   │   │   ├── num-traits v0.2.19 (*)
│   │   │   ├── rand v0.8.5 (*)
│   │   │   └── rand_xorshift v0.3.0
│   │   │       └── rand_core v0.6.4 (*)
│   │   ├── numquant v0.2.0
│   │   ├── once_cell v1.19.0
│   │   ├── ping-rs v0.1.2
│   │   │   ├── futures v0.3.30 (*)
│   │   │   ├── mio v0.8.11 (*)
│   │   │   ├── paste v1.0.15 (proc-macro)
│   │   │   └── socket2 v0.4.10
│   │   │       └── libc v0.2.159
│   │   ├── postcard v1.0.10 (*)
│   │   ├── rcgen v0.12.1 (*)
│   │   ├── rustls v0.21.12
│   │   │   ├── log v0.4.22
│   │   │   ├── ring v0.17.8 (*)
│   │   │   ├── rustls-webpki v0.101.7
│   │   │   │   ├── ring v0.17.8 (*)
│   │   │   │   └── untrusted v0.9.0
│   │   │   └── sct v0.7.1
│   │   │       ├── ring v0.17.8 (*)
│   │   │       └── untrusted v0.9.0
│   │   ├── send_wrapper v0.6.0
│   │   ├── serde v1.0.210 (*)
│   │   ├── serde_yaml v0.9.34+deprecated (*)
│   │   ├── smallvec v1.13.2 (*)
│   │   ├── sys-locale v0.3.1
│   │   ├── thiserror v1.0.64 (*)
│   │   ├── tokio v1.40.0 (*)
│   │   ├── tracing v0.1.40 (*)
│   │   ├── tracing-appender v0.2.3
│   │   │   ├── crossbeam-channel v0.5.13 (*)
│   │   │   ├── parking_lot v0.12.3 (*)
│   │   │   ├── thiserror v1.0.64 (*)
│   │   │   ├── time v0.3.36 (*)
│   │   │   └── tracing-subscriber v0.3.18 (*)
│   │   ├── tracing-subscriber v0.3.18 (*)
│   │   ├── ttf-parser v0.24.1
│   │   ├── turborand v0.10.1 (*)
│   │   └── unic-langid v0.9.5 (*)
│   ├── directories v5.0.1 (*)
│   ├── glam v0.24.2 (*)
│   ├── serde v1.0.210 (*)
│   └── serde_yaml v0.9.34+deprecated (*)
├── bones_framework v0.4.0 (* git)
├── bytemuck v1.18.0 (*)
├── egui_extras v0.23.0
│   ├── egui v0.23.0 (*)
│   ├── enum-map v2.7.3
│   │   ├── enum-map-derive v0.17.0 (proc-macro)
│   │   │   ├── proc-macro2 v1.0.86 (*)
│   │   │   ├── quote v1.0.37 (*)
│   │   │   └── syn v2.0.79 (*)
│   │   └── serde v1.0.210 (*)
│   ├── log v0.4.22
│   └── serde v1.0.210 (*)
├── humantime-serde v1.1.1
│   ├── humantime v2.1.0
│   └── serde v1.0.210 (*)
├── indexmap v2.5.0 (*)
├── nalgebra v0.32.6
│   ├── approx v0.5.1 (*)
│   ├── glam v0.24.2 (*)
│   ├── matrixmultiply v0.3.9
│   │   └── rawpointer v0.2.1
│   │   [build-dependencies]
│   │   └── autocfg v1.4.0
│   ├── nalgebra-macros v0.2.2 (proc-macro)
│   │   ├── proc-macro2 v1.0.86 (*)
│   │   ├── quote v1.0.37 (*)
│   │   └── syn v2.0.79 (*)
│   ├── num-complex v0.4.6
│   │   └── num-traits v0.2.19 (*)
│   ├── num-rational v0.4.2
│   │   ├── num-integer v0.1.46 (*)
│   │   └── num-traits v0.2.19 (*)
│   ├── num-traits v0.2.19 (*)
│   ├── simba v0.8.1
│   │   ├── approx v0.5.1 (*)
│   │   ├── libm v0.2.8
│   │   ├── num-complex v0.4.6 (*)
│   │   ├── num-traits v0.2.19 (*)
│   │   ├── paste v1.0.15 (proc-macro)
│   │   └── wide v0.7.28
│   │       ├── bytemuck v1.18.0 (*)
│   │       └── safe_arch v0.7.2
│   │           └── bytemuck v1.18.0 (*)
│   └── typenum v1.17.0
├── once_cell v1.19.0
├── ordered-float v3.9.2
│   └── num-traits v0.2.19 (*)
├── peg v0.8.4
│   ├── peg-macros v0.8.4 (proc-macro)
│   │   ├── peg-runtime v0.8.3
│   │   ├── proc-macro2 v1.0.86 (*)
│   │   └── quote v1.0.37 (*)
│   └── peg-runtime v0.8.3
├── petgraph v0.6.5 (*)
├── postcard v1.0.10 (*)
├── puffin v0.17.0
│   ├── anyhow v1.0.89
│   ├── bincode v1.3.3 (*)
│   ├── byteorder v1.5.0
│   ├── cfg-if v1.0.0
│   ├── lz4_flex v0.11.3
│   ├── once_cell v1.19.0
│   ├── parking_lot v0.12.3 (*)
│   └── serde v1.0.210 (*)
├── puffin_egui v0.23.0
│   ├── egui v0.23.0 (*)
│   ├── indexmap v1.9.3 (*)
│   ├── natord v1.0.9
│   ├── once_cell v1.19.0
│   ├── puffin v0.17.0 (*)
│   ├── time v0.3.36 (*)
│   ├── vec1 v1.12.1
│   └── web-time v0.2.4
├── rapier2d v0.18.0 (* git)
│   ├── approx v0.5.1 (*)
│   ├── arrayvec v0.7.6
│   ├── bit-vec v0.6.3
│   ├── bitflags v1.3.2
│   ├── crossbeam v0.8.4
│   │   ├── crossbeam-channel v0.5.13 (*)
│   │   ├── crossbeam-deque v0.8.5
│   │   │   ├── crossbeam-epoch v0.9.18
│   │   │   │   └── crossbeam-utils v0.8.20
│   │   │   └── crossbeam-utils v0.8.20
│   │   ├── crossbeam-epoch v0.9.18 (*)
│   │   ├── crossbeam-queue v0.3.11
│   │   │   └── crossbeam-utils v0.8.20
│   │   └── crossbeam-utils v0.8.20
│   ├── downcast-rs v1.2.1
│   ├── nalgebra v0.32.6 (*)
│   ├── num-derive v0.4.2 (proc-macro)
│   │   ├── proc-macro2 v1.0.86 (*)
│   │   ├── quote v1.0.37 (*)
│   │   └── syn v2.0.79 (*)
│   ├── num-traits v0.2.19 (*)
│   ├── parry2d v0.13.8
│   │   ├── approx v0.5.1 (*)
│   │   ├── arrayvec v0.7.6
│   │   ├── bitflags v1.3.2
│   │   ├── downcast-rs v1.2.1
│   │   ├── either v1.13.0
│   │   ├── indexmap v1.9.3 (*)
│   │   ├── nalgebra v0.32.6 (*)
│   │   ├── num-derive v0.4.2 (proc-macro) (*)
│   │   ├── num-traits v0.2.19 (*)
│   │   ├── rustc-hash v1.1.0
│   │   ├── simba v0.8.1 (*)
│   │   ├── slab v0.4.9 (*)
│   │   ├── smallvec v1.13.2 (*)
│   │   └── spade v2.12.1
│   │       ├── hashbrown v0.14.5 (*)
│   │       ├── num-traits v0.2.19 (*)
│   │       ├── robust v1.1.0
│   │       └── smallvec v1.13.2 (*)
│   ├── rustc-hash v1.1.0
│   └── simba v0.8.1 (*)
├── serde v1.0.210 (*)
├── serde_yaml v0.9.34+deprecated (*)
├── shadow-rs v0.25.0
│   ├── const_format v0.2.33
│   │   └── const_format_proc_macros v0.2.33 (proc-macro)
│   │       ├── proc-macro2 v1.0.86 (*)
│   │       ├── quote v1.0.37 (*)
│   │       └── unicode-xid v0.2.6
│   ├── is_debug v1.0.1
│   └── time v0.3.36 (*)
├── shiftnanigans v0.3.4
│   ├── bitvec v1.0.1 (*)
│   ├── fastrand v1.9.0
│   ├── itertools v0.10.5
│   │   └── either v1.13.0
│   ├── log v0.4.22
│   └── nohash-hasher v0.2.0
├── smallvec v1.13.2 (*)
├── strum v0.25.0
│   └── strum_macros v0.25.3 (proc-macro)
│       ├── heck v0.4.1
│       ├── proc-macro2 v1.0.86 (*)
│       ├── quote v1.0.37 (*)
│       ├── rustversion v1.0.17 (proc-macro)
│       └── syn v2.0.79 (*)
├── thiserror v1.0.64 (*)
├── tracing v0.1.40 (*)
└── turborand v0.10.1 (*)
[build-dependencies]
└── shadow-rs v0.25.0
    ├── const_format v0.2.33 (*)
    ├── git2 v0.18.3
    │   ├── bitflags v2.6.0
    │   ├── libc v0.2.159
    │   ├── libgit2-sys v0.16.2+1.7.2
    │   │   ├── libc v0.2.159
    │   │   └── libz-sys v1.1.20
    │   │       └── libc v0.2.159
    │   │       [build-dependencies]
    │   │       ├── cc v1.1.22 (*)
    │   │       ├── pkg-config v0.3.31
    │   │       └── vcpkg v0.2.15
    │   │   [build-dependencies]
    │   │   ├── cc v1.1.22 (*)
    │   │   └── pkg-config v0.3.31
    │   ├── log v0.4.22
    │   └── url v2.5.2
    │       ├── form_urlencoded v1.2.1 (*)
    │       ├── idna v0.5.0 (*)
    │       └── percent-encoding v2.3.1
    ├── is_debug v1.0.1
    ├── time v0.3.36
    │   ├── deranged v0.3.11
    │   │   └── powerfmt v0.2.0
    │   ├── itoa v1.0.11
    │   ├── libc v0.2.159
    │   ├── num-conv v0.1.0
    │   ├── num_threads v0.1.7
    │   ├── powerfmt v0.2.0
    │   └── time-core v0.1.2
    └── tzdb v0.5.10
        ├── iana-time-zone v0.1.61
        ├── tz-rs v0.6.14
        │   └── const_fn v0.4.10 (proc-macro)
        └── tzdb v0.6.1
            ├── iana-time-zone v0.1.61
            ├── tz-rs v0.6.14 (*)
            └── tzdb_data v0.1.3
                └── tz-rs v0.6.14 (*)
"#;

#[doc=r#"
The cargo version which which the project was built, as output by `cargo --version`."#]
#[allow(dead_code)]
#[allow(clippy::all)]
pub const CARGO_VERSION :&str = r#"cargo 1.81.0 (2dbb1af80 2024-08-20)"#;

#[doc=r#"
The author of the Git commit that this project was built from.

This constant will be empty if the last commit cannot be determined."#]
#[allow(dead_code)]
#[allow(clippy::all)]
pub const COMMIT_AUTHOR :&str = r#"elliay"#;

#[doc=r#"The time of the Git commit that this project was built from.
The time is formatted in modified ISO 8601 format (`YYYY-MM-DD HH-MM ±hh-mm` where hh-mm is the offset from UTC).

This constant will be empty if the last commit cannot be determined."#]
#[allow(dead_code)]
#[allow(clippy::all)]
pub const COMMIT_DATE :&str = r#"2024-12-05 20:37:38 +00:00"#;

#[doc=r#"
The name of the Git branch that this project was built from.
The time is formatted according to [RFC 2822](https://datatracker.ietf.org/doc/html/rfc2822#section-3.3) (e.g. HTTP Headers).

This constant will be empty if the last commit cannot be determined."#]
#[allow(dead_code)]
#[allow(clippy::all)]
pub const COMMIT_DATE_2822 :&str = r#"Thu, 05 Dec 2024 20:37:38 +0000"#;

#[doc=r#"
The name of the Git branch that this project was built from.
The time is formatted according to [RFC 3339 and ISO 8601](https://datatracker.ietf.org/doc/html/rfc3339#section-5.6).

This constant will be empty if the last commit cannot be determined."#]
#[allow(dead_code)]
#[allow(clippy::all)]
pub const COMMIT_DATE_3339 :&str = r#"2024-12-05T20:37:38Z"#;

#[doc=r#"
The e-mail address of the author of the Git commit that this project was built from.

This constant will be empty if the last commit cannot be determined."#]
#[allow(dead_code)]
#[allow(clippy::all)]
pub const COMMIT_EMAIL :&str = r#"91764038+elliay@users.noreply.github.com"#;

#[doc=r#"
The full commit hash of the Git commit that this project was built from.
An abbreviated, but not necessarily unique, version of this is [`SHORT_COMMIT`].

This constant will be empty if the last commit cannot be determined."#]
#[allow(dead_code)]
#[allow(clippy::all)]
pub const COMMIT_HASH :&str = r#"1ec5db624bf3238e703e02a1133260df689cf7a0"#;

#[doc=r#"
Whether the Git working tree was clean at the time of project build (`true`), or not (`false`).

This constant will be `false` if the last commit cannot be determined."#]
#[allow(dead_code)]
pub const GIT_CLEAN :bool = true;

#[doc=r#"
The Git working tree status as a list of files with their status, similar to `git status`.
Each line of the list is preceded with `  * `, followed by the file name.
Files marked `(dirty)` have unstaged changes.
Files marked `(staged)` have staged changes.

This constant will be empty if the working tree status cannot be determined."#]
#[allow(dead_code)]
#[allow(clippy::all)]
pub const GIT_STATUS_FILE :&str = r#""#;

#[doc=r#"
The name of the last Git tag on the branch that this project was built from.
As opposed to [`TAG`], this does not require the current commit to be tagged, just one of its parents.

This constant will be empty if the last tag cannot be determined."#]
#[allow(dead_code)]
#[allow(clippy::all)]
pub const LAST_TAG :&str = r#""#;

#[doc=r#"
The project's description, as determined by the Cargo.toml manifest."#]
#[allow(dead_code)]
#[allow(clippy::all)]
pub const PKG_DESCRIPTION :&str = r#"A tactical 2D shooter"#;

#[doc=r#"
The project's full version string, as determined by the Cargo.toml manifest."#]
#[allow(dead_code)]
#[allow(clippy::all)]
pub const PKG_VERSION :&str = r#"0.12.2"#;

#[doc=r#"
The project's semver major version, as determined by the Cargo.toml manifest."#]
#[allow(dead_code)]
#[allow(clippy::all)]
pub const PKG_VERSION_MAJOR :&str = r#"0"#;

#[doc=r#"
The project's semver minor version, as determined by the Cargo.toml manifest."#]
#[allow(dead_code)]
#[allow(clippy::all)]
pub const PKG_VERSION_MINOR :&str = r#"12"#;

#[doc=r#"
The project's semver patch version, as determined by the Cargo.toml manifest."#]
#[allow(dead_code)]
#[allow(clippy::all)]
pub const PKG_VERSION_PATCH :&str = r#"2"#;

#[doc=r#"
The project's semver pre-release version, as determined by the Cargo.toml manifest."#]
#[allow(dead_code)]
#[allow(clippy::all)]
pub const PKG_VERSION_PRE :&str = r#""#;

#[doc=r#"
The project name, as determined by the Cargo.toml manifest."#]
#[allow(dead_code)]
#[allow(clippy::all)]
pub const PROJECT_NAME :&str = r#"jumpy"#;

#[doc=r#"
The [Rustup toolchain](https://rust-lang.github.io/rustup/concepts/toolchains.html) with which the project was built.
Note that as per Rustup toolchain format, this variable may or may not contain host and date information,
but it will always contain [channel](https://rust-lang.github.io/rustup/concepts/channels.html) information (stable, beta or nightly)."#]
#[allow(dead_code)]
#[allow(clippy::all)]
pub const RUST_CHANNEL :&str = r#"1.81-x86_64-unknown-linux-gnu"#;

#[doc=r#"
Rust version with which the project was built.
The version always uses the canonical Rust version format,
and is therefore identical to the output of the build toolchain's `rustc --version`."#]
#[allow(dead_code)]
#[allow(clippy::all)]
pub const RUST_VERSION :&str = r#"rustc 1.81.0 (eeb90cda1 2024-09-04)"#;

#[doc=r#"
The short hash of the Git commit that this project was built from.
Note that this will always truncate [`COMMIT_HASH`] to 8 characters if necessary.
Depending on the amount of commits in your project, this may not yield a unique Git identifier
([see here for more details on hash abbreviation](https://git-scm.com/docs/git-describe#_examples)).

This constant will be empty if the last commit cannot be determined."#]
#[allow(dead_code)]
#[allow(clippy::all)]
pub const SHORT_COMMIT :&str = r#"1ec5db62"#;

#[doc=r#"
The name of the Git tag that this project was built from.
Note that this will be empty if there is no tag for the HEAD at the time of build."#]
#[allow(dead_code)]
#[allow(clippy::all)]
pub const TAG :&str = r#""#;


/// A long version string describing the project.
/// The version string contains the package version, branch, commit hash, build time, and build environment on separate lines.
/// This constant is suitable for printing to the user.
#[allow(dead_code)]
pub const VERSION:&str = shadow_rs::formatcp!(r#"
pkg_version:{}
branch:{}
commit_hash:{}
build_time:{}
build_env:{},{}"#,PKG_VERSION, BRANCH, SHORT_COMMIT, BUILD_TIME, RUST_VERSION, RUST_CHANNEL
);

#[allow(dead_code)]
#[deprecated = "Replaced with `CLAP_LONG_VERSION`"]
pub const CLAP_VERSION:&str = shadow_rs::formatcp!(r#"{}
branch:{}
commit_hash:{}
build_time:{}
build_env:{},{}"#,PKG_VERSION, BRANCH, SHORT_COMMIT, BUILD_TIME, RUST_VERSION, RUST_CHANNEL
);


/// A long version string describing the project.
/// The version string contains the package version, branch, commit hash, build time, and build environment on separate lines.
/// This constant is intended to be used by clap or other CLI tools as a long version string.
#[allow(dead_code)]
pub const CLAP_LONG_VERSION:&str = shadow_rs::formatcp!(r#"{}
branch:{}
commit_hash:{}
build_time:{}
build_env:{},{}"#,PKG_VERSION, BRANCH, SHORT_COMMIT, BUILD_TIME, RUST_VERSION, RUST_CHANNEL
);

/// Prints all built-in `shadow-rs` build constants to standard output.
#[allow(dead_code)]
pub fn print_build_in() {
	println!("BRANCH:{BRANCH}\n");
	println!("BUILD_OS:{BUILD_OS}\n");
	println!("BUILD_RUST_CHANNEL:{BUILD_RUST_CHANNEL}\n");
	println!("BUILD_TARGET:{BUILD_TARGET}\n");
	println!("BUILD_TARGET_ARCH:{BUILD_TARGET_ARCH}\n");
	println!("BUILD_TIME:{BUILD_TIME}\n");
	println!("BUILD_TIME_2822:{BUILD_TIME_2822}\n");
	println!("BUILD_TIME_3339:{BUILD_TIME_3339}\n");
	println!("CARGO_MANIFEST_DIR:{CARGO_MANIFEST_DIR}\n");
	println!("CARGO_TREE:{CARGO_TREE}\n");
	println!("CARGO_VERSION:{CARGO_VERSION}\n");
	println!("COMMIT_AUTHOR:{COMMIT_AUTHOR}\n");
	println!("COMMIT_DATE:{COMMIT_DATE}\n");
	println!("COMMIT_DATE_2822:{COMMIT_DATE_2822}\n");
	println!("COMMIT_DATE_3339:{COMMIT_DATE_3339}\n");
	println!("COMMIT_EMAIL:{COMMIT_EMAIL}\n");
	println!("COMMIT_HASH:{COMMIT_HASH}\n");
	println!("GIT_CLEAN:{GIT_CLEAN}\n");
	println!("GIT_STATUS_FILE:{GIT_STATUS_FILE}\n");
	println!("LAST_TAG:{LAST_TAG}\n");
	println!("PKG_DESCRIPTION:{PKG_DESCRIPTION}\n");
	println!("PKG_VERSION:{PKG_VERSION}\n");
	println!("PKG_VERSION_MAJOR:{PKG_VERSION_MAJOR}\n");
	println!("PKG_VERSION_MINOR:{PKG_VERSION_MINOR}\n");
	println!("PKG_VERSION_PATCH:{PKG_VERSION_PATCH}\n");
	println!("PKG_VERSION_PRE:{PKG_VERSION_PRE}\n");
	println!("PROJECT_NAME:{PROJECT_NAME}\n");
	println!("RUST_CHANNEL:{RUST_CHANNEL}\n");
	println!("RUST_VERSION:{RUST_VERSION}\n");
	println!("SHORT_COMMIT:{SHORT_COMMIT}\n");
	println!("TAG:{TAG}\n");
	println!("VERSION:{VERSION}\n");
	println!("CLAP_LONG_VERSION:{CLAP_LONG_VERSION}\n");
}