vtcode 0.142.1

A Rust-based terminal coding agent with modular architecture supporting multiple LLM providers
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
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
THIRD-PARTY NOTICES
================================================================================

This file contains notices for third-party code used in this project.

In-tree source ports and inspired-by components:
--------------------------------------------------------------------------------

OpenAI Codex
  Source: https://github.com/openai/codex
  License: Apache License, Version 2.0

  Components used as architectural reference or adapted patterns:
  - OAuth / login flow (vtcode-auth/src/openai_chatgpt_oauth.rs)
  - PTY process handling (vtcode-bash-runner/src/process.rs)
  - MCP client building blocks (vtcode-mcp/src/lib.rs)
  - Ollama provider integration (vtcode-llm/src/providers/ollama/)
  - LM Studio provider integration (vtcode-llm/src/providers/lmstudio/)
  - Tool handler patterns (vtcode-core/src/tools/handlers/)

  vtcode's implementations are original works that follow Codex
  architectural patterns; they are not direct copies of Codex source.

Kepano (MIT-licensed network allowlist)
  Source: https://github.com/kepano
  License: MIT
  Component: vtcode-config/data/network_allowlist.toml

================================================================================
PART I — CRATES.IO / GIT DEPENDENCIES
================================================================================

This section is auto-generated by scripts/generate-notices.sh (cargo-about).
Do not edit by hand — regenerate after dependency changes.

--------------------------------------------------------------------------------
License Overview
--------------------------------------------------------------------------------
  Apache License 2.0 (513 crates) — SPDX: Apache-2.0
  MIT License (216 crates) — SPDX: MIT
  Unicode License v3 (19 crates) — SPDX: Unicode-3.0
  BSD 3-Clause "New" or "Revised" License (10 crates) — SPDX: BSD-3-Clause
  ISC License (8 crates) — SPDX: ISC
  BSD 2-Clause "Simplified" License (3 crates) — SPDX: BSD-2-Clause
  Community Data License Agreement Permissive 2.0 (3 crates) — SPDX: CDLA-Permissive-2.0
  zlib License (3 crates) — SPDX: Zlib
  Boost Software License 1.0 (2 crates) — SPDX: BSL-1.0
  Mozilla Public License 2.0 (2 crates) — SPDX: MPL-2.0
  Creative Commons Zero v1.0 Universal (1 crates) — SPDX: CC0-1.0
  MIT No Attribution (1 crates) — SPDX: MIT-0
  University of Illinois/NCSA Open Source License (1 crates) — SPDX: NCSA

--------------------------------------------------------------------------------
Detailed Dependency Listing
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  num_threads 0.1.7
    Source: https://github.com/jhpratt/num_threads
    License: MIT OR Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  powerfmt 0.2.0
    Source: https://github.com/jhpratt/powerfmt
    License: MIT OR Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  cursor-icon 1.2.0
    Source: https://github.com/rust-windowing/cursor-icon
    License: MIT OR Apache-2.0 OR Zlib
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  deranged 0.5.8
    Source: https://github.com/jhpratt/deranged
    License: MIT OR Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  openai-harmony 0.0.8
    Source: https://github.com/openai/harmony
    License: Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  as-any 0.3.2
    Source: https://codeberg.org/fogti/as-any
    License: MIT OR Apache-2.0
  encode_unicode 1.0.0
    Source: https://github.com/tormol/encode_unicode
    License: Apache-2.0 OR MIT
  encoding_rs 0.8.35
    Source: https://github.com/hsivonen/encoding_rs
    License: (Apache-2.0 OR MIT) AND BSD-3-Clause
  nohash-hasher 0.2.0
    Source: https://github.com/paritytech/nohash-hasher
    License: Apache-2.0 OR MIT
  sse-stream 0.2.5
    Source: https://github.com/4t145/sse-stream/
    License: MIT OR Apache-2.0
  static_assertions 1.1.0
    Source: https://github.com/nvzqz/static-assertions-rs
    License: MIT OR Apache-2.0
  tiktoken 3.5.1
    Source: https://github.com/goliajp/rust-tiktoken
    License: MIT OR Apache-2.0
  utf8_iter 1.0.4
    Source: https://github.com/hsivonen/utf8_iter
    License: Apache-2.0 OR MIT
  x11rb-protocol 0.13.2
    Source: https://github.com/psychon/x11rb
    License: MIT OR Apache-2.0
  x11rb 0.13.2
    Source: https://github.com/psychon/x11rb
    License: MIT OR Apache-2.0
  zeroize 1.9.0
    Source: https://github.com/RustCrypto/utils
    License: Apache-2.0 OR MIT
  zeroize_derive 1.5.0
    Source: https://github.com/RustCrypto/utils
    License: Apache-2.0 OR MIT
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  windows-collections 0.2.0
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows-collections 0.3.2
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows-core 0.61.2
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows-core 0.62.2
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows-future 0.2.1
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows-future 0.3.2
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows-implement 0.60.2
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows-interface 0.59.3
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows-link 0.1.3
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows-link 0.2.1
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows-numerics 0.2.0
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows-numerics 0.3.1
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows-registry 0.6.1
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows-result 0.3.4
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows-result 0.4.1
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows-strings 0.4.2
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows-strings 0.5.1
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows-sys 0.42.0
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows-sys 0.52.0
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows-sys 0.59.0
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows-sys 0.60.2
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows-sys 0.61.2
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows-targets 0.52.6
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows-targets 0.53.5
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows-threading 0.1.0
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows-threading 0.2.1
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows-version 0.1.7
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows 0.42.0
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows 0.61.3
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows 0.62.2
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows_aarch64_gnullvm 0.42.2
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows_aarch64_gnullvm 0.52.6
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows_aarch64_gnullvm 0.53.1
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows_aarch64_msvc 0.42.2
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows_aarch64_msvc 0.52.6
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows_aarch64_msvc 0.53.1
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows_i686_gnu 0.42.2
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows_i686_gnu 0.52.6
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows_i686_gnu 0.53.1
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows_i686_gnullvm 0.52.6
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows_i686_gnullvm 0.53.1
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows_i686_msvc 0.42.2
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows_i686_msvc 0.52.6
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows_i686_msvc 0.53.1
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows_x86_64_gnu 0.42.2
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows_x86_64_gnu 0.52.6
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows_x86_64_gnu 0.53.1
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows_x86_64_gnullvm 0.42.2
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows_x86_64_gnullvm 0.52.6
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows_x86_64_gnullvm 0.53.1
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows_x86_64_msvc 0.42.2
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows_x86_64_msvc 0.52.6
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
  windows_x86_64_msvc 0.53.1
    Source: https://github.com/microsoft/windows-rs
    License: MIT OR Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  zopfli 0.8.3
    Source: https://github.com/zopfli-rs/zopfli
    License: Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  zerocopy-derive 0.8.55
    Source: https://github.com/google/zerocopy
    License: BSD-2-Clause OR Apache-2.0 OR MIT
  zerocopy 0.8.55
    Source: https://github.com/google/zerocopy
    License: BSD-2-Clause OR Apache-2.0 OR MIT
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  line-clipping 0.3.7
    Source: https://github.com/ratatui/line-clipping
    License: MIT OR Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  moxcms 0.8.1
    Source: https://github.com/awxkee/moxcms.git
    License: BSD-3-Clause OR Apache-2.0
  pxfm 0.1.30
    Source: https://github.com/awxkee/pxfm
    License: BSD-3-Clause OR Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  ciborium-io 0.2.2
    Source: https://github.com/enarx/ciborium
    License: Apache-2.0
  ciborium-ll 0.2.2
    Source: https://github.com/enarx/ciborium
    License: Apache-2.0
  ciborium 0.2.2
    Source: https://github.com/enarx/ciborium
    License: Apache-2.0
  imgref 1.12.2
    Source: https://github.com/kornelski/imgref
    License: CC0-1.0 OR Apache-2.0
  rustls-platform-verifier 0.7.0
    Source: https://github.com/rustls/rustls-platform-verifier
    License: MIT OR Apache-2.0
  unarray 0.1.4
    Source: https://github.com/cameron1024/unarray
    License: MIT OR Apache-2.0
  unicode-linebreak 0.1.5
    Source: https://github.com/axelf4/unicode-linebreak
    License: Apache-2.0
  zune-core 0.5.1
    Source: https://github.com/etemesi254/zune-image
    License: MIT OR Apache-2.0 OR Zlib
  zune-jpeg 0.5.15
    Source: https://github.com/etemesi254/zune-image/tree/dev/crates/zune-jpeg
    License: MIT OR Apache-2.0 OR Zlib
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  ntapi 0.4.3
    Source: https://github.com/MSxDOS/ntapi
    License: Apache-2.0 OR MIT
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  ipnet 2.12.0
    Source: https://github.com/krisprice/ipnet
    License: MIT OR Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  deadpool-runtime 0.1.4
    Source: https://github.com/bikeshedder/deadpool
    License: MIT OR Apache-2.0
  deadpool 0.12.3
    Source: https://github.com/bikeshedder/deadpool
    License: MIT OR Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  kasuari 0.4.12
    Source: https://github.com/ratatui/kasuari
    License: MIT OR Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  bit_field 0.10.3
    Source: https://github.com/phil-opp/rust-bit-field
    License: Apache-2.0 OR MIT
  bytecount 0.6.9
    Source: https://github.com/llogiq/bytecount
    License: Apache-2.0 OR MIT
  diff 0.1.13
    Source: https://github.com/utkarshkukreti/diff.rs
    License: MIT OR Apache-2.0
  normalize-line-endings 0.3.0
    Source: https://github.com/derekdreery/normalize-line-endings
    License: Apache-2.0
  notify-rust 4.18.0
    Source: https://github.com/hoodie/notify-rust
    License: MIT OR Apache-2.0
  unicode-general-category 1.1.0
    Source: https://github.com/yeslogic/unicode-general-category
    License: Apache-2.0
  winapi 0.3.9
    Source: https://github.com/retep998/winapi-rs
    License: MIT OR Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  annotate-snippets 0.12.16
    Source: https://github.com/rust-lang/annotate-snippets-rs
    License: MIT OR Apache-2.0
  anstream 1.0.0
    Source: https://github.com/rust-cli/anstyle.git
    License: MIT OR Apache-2.0
  anstyle-git 1.1.5
    Source: https://github.com/rust-cli/anstyle.git
    License: MIT OR Apache-2.0
  anstyle-ls 1.0.6
    Source: https://github.com/rust-cli/anstyle.git
    License: MIT OR Apache-2.0
  anstyle-parse 1.0.0
    Source: https://github.com/rust-cli/anstyle.git
    License: MIT OR Apache-2.0
  anstyle-query 1.1.5
    Source: https://github.com/rust-cli/anstyle.git
    License: MIT OR Apache-2.0
  anstyle-wincon 3.0.11
    Source: https://github.com/rust-cli/anstyle.git
    License: MIT OR Apache-2.0
  anstyle 1.0.14
    Source: https://github.com/rust-cli/anstyle.git
    License: MIT OR Apache-2.0
  assert_cmd 2.2.2
    Source: https://github.com/assert-rs/assert_cmd.git
    License: MIT OR Apache-2.0
  assert_fs 1.1.4
    Source: https://github.com/assert-rs/assert_fs.git
    License: MIT OR Apache-2.0
  clap 4.6.4
    Source: https://github.com/clap-rs/clap
    License: MIT OR Apache-2.0
  clap_builder 4.6.2
    Source: https://github.com/clap-rs/clap
    License: MIT OR Apache-2.0
  clap_derive 4.6.4
    Source: https://github.com/clap-rs/clap
    License: MIT OR Apache-2.0
  clap_lex 1.1.0
    Source: https://github.com/clap-rs/clap
    License: MIT OR Apache-2.0
  colorchoice-clap 1.0.8
    Source: https://github.com/rust-cli/anstyle.git
    License: MIT OR Apache-2.0
  colorchoice 1.0.5
    Source: https://github.com/rust-cli/anstyle.git
    License: MIT OR Apache-2.0
  crc32fast 1.5.0
    Source: https://github.com/srijs/rust-crc32fast
    License: MIT OR Apache-2.0
  hex 0.4.3
    Source: https://github.com/KokaKiwi/rust-hex
    License: MIT OR Apache-2.0
  human-panic 2.0.8
    Source: https://github.com/rust-cli/human-panic
    License: MIT OR Apache-2.0
  humantime 2.4.0
    Source: https://github.com/chronotope/humantime
    License: MIT OR Apache-2.0
  is_terminal_polyfill 1.70.2
    Source: https://github.com/polyfill-rs/is_terminal_polyfill
    License: MIT OR Apache-2.0
  jni-sys 0.4.1
    Source: https://github.com/jni-rs/jni-sys
    License: MIT OR Apache-2.0
  no_std_io2 0.9.4
    Source: https://github.com/wcampbell0x2a/no-std-io2
    License: Apache-2.0 OR MIT
  once_cell_polyfill 1.70.2
    Source: https://github.com/polyfill-rs/once_cell_polyfill
    License: MIT OR Apache-2.0
  predicates-core 1.0.10
    Source: https://github.com/assert-rs/predicates-rs
    License: MIT OR Apache-2.0
  predicates-tree 1.0.13
    Source: https://github.com/assert-rs/predicates-rs
    License: MIT OR Apache-2.0
  predicates 3.1.4
    Source: https://github.com/assert-rs/predicates-rs
    License: MIT OR Apache-2.0
  pretty_assertions 1.4.1
    Source: https://github.com/rust-pretty-assertions/rust-pretty-assertions
    License: MIT OR Apache-2.0
  quick-error 1.2.3
    Source: http://github.com/tailhook/quick-error
    License: MIT OR Apache-2.0
  quick-error 2.0.1
    Source: http://github.com/tailhook/quick-error
    License: MIT OR Apache-2.0
  roff 1.1.1
    Source: https://github.com/rust-cli/roff-rs
    License: MIT OR Apache-2.0
  serde_spanned 1.1.1
    Source: https://github.com/toml-rs/toml
    License: MIT OR Apache-2.0
  streaming-iterator 0.1.9
    Source: https://github.com/sfackler/streaming-iterator
    License: MIT OR Apache-2.0
  terminal_size 0.4.4
    Source: https://github.com/eminence/terminal-size
    License: MIT OR Apache-2.0
  toml 1.1.4+spec-1.1.0
    Source: https://github.com/toml-rs/toml
    License: MIT OR Apache-2.0
  toml_datetime 1.1.1+spec-1.1.0
    Source: https://github.com/toml-rs/toml
    License: MIT OR Apache-2.0
  toml_edit 0.25.13+spec-1.1.0
    Source: https://github.com/toml-rs/toml
    License: MIT OR Apache-2.0
  toml_parser 1.1.3+spec-1.1.0
    Source: https://github.com/toml-rs/toml
    License: MIT OR Apache-2.0
  toml_writer 1.1.2+spec-1.1.0
    Source: https://github.com/toml-rs/toml
    License: MIT OR Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  async-broadcast 0.7.2
    Source: https://github.com/smol-rs/async-broadcast
    License: MIT OR Apache-2.0
  futures-concurrency 7.7.1
    Source: https://github.com/yoshuawuyts/futures-concurrency
    License: MIT OR Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  generator 0.8.9
    Source: https://github.com/Xudong-Huang/generator-rs.git
    License: MIT OR Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  shell-words 1.1.1
    Source: https://github.com/tmiasko/shell-words
    License: MIT OR Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  futures-channel 0.3.33
    Source: https://github.com/rust-lang/futures-rs
    License: MIT OR Apache-2.0
  futures-core 0.3.33
    Source: https://github.com/rust-lang/futures-rs
    License: MIT OR Apache-2.0
  futures-executor 0.3.33
    Source: https://github.com/rust-lang/futures-rs
    License: MIT OR Apache-2.0
  futures-io 0.3.33
    Source: https://github.com/rust-lang/futures-rs
    License: MIT OR Apache-2.0
  futures-macro 0.3.33
    Source: https://github.com/rust-lang/futures-rs
    License: MIT OR Apache-2.0
  futures-sink 0.3.33
    Source: https://github.com/rust-lang/futures-rs
    License: MIT OR Apache-2.0
  futures-task 0.3.33
    Source: https://github.com/rust-lang/futures-rs
    License: MIT OR Apache-2.0
  futures-util 0.3.33
    Source: https://github.com/rust-lang/futures-rs
    License: MIT OR Apache-2.0
  futures 0.3.33
    Source: https://github.com/rust-lang/futures-rs
    License: MIT OR Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  typenum 1.20.1
    Source: https://github.com/paholg/typenum
    License: MIT OR Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  reqwest 0.12.28
    Source: https://github.com/seanmonstar/reqwest
    License: MIT OR Apache-2.0
  reqwest 0.13.4
    Source: https://github.com/seanmonstar/reqwest
    License: MIT OR Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  iovec 0.1.4
    Source: https://github.com/carllerche/iovec
    License: MIT OR Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  yansi 1.0.1
    Source: https://github.com/SergioBenitez/yansi
    License: MIT OR Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  http 1.4.2
    Source: https://github.com/hyperium/http
    License: MIT OR Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  tokio-rustls 0.26.4
    Source: https://github.com/rustls/tokio-rustls
    License: MIT OR Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  ppv-lite86 0.2.21
    Source: https://github.com/cryptocorrosion/cryptocorrosion
    License: MIT OR Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  iana-time-zone-haiku 0.1.2
    Source: https://github.com/strawlab/iana-time-zone
    License: MIT OR Apache-2.0
  iana-time-zone 0.1.65
    Source: https://github.com/strawlab/iana-time-zone
    License: MIT OR Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  rustls-pki-types 1.15.1
    Source: https://github.com/rustls/pki-types
    License: MIT OR Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  notify-types 2.1.0
    Source: https://github.com/notify-rs/notify.git
    License: MIT OR Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  apple-native-keyring-store 1.0.1
    Source: https://github.com/open-source-cooperative/apple-native-keyring-store.git
    License: MIT OR Apache-2.0
  dbus-secret-service-keyring-store 1.0.0
    Source: https://github.com/open-source-cooperative/dbus-secret-service-keyring-store.git
    License: MIT OR Apache-2.0
  keyring-core 1.0.0
    Source: https://github.com/open-source-cooperative/keyring-core.git
    License: MIT OR Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  async-recursion 1.1.1
    Source: https://github.com/dcchut/async-recursion
    License: MIT OR Apache-2.0
  gif 0.14.2
    Source: https://github.com/image-rs/image-gif
    License: MIT OR Apache-2.0
  page_size 0.6.0
    Source: https://github.com/Elzair/page_size_rs
    License: MIT OR Apache-2.0
  weezl 0.1.12
    Source: https://github.com/image-rs/weezl
    License: MIT OR Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  addr2line 0.25.1
    Source: https://github.com/gimli-rs/addr2line
    License: Apache-2.0 OR MIT
  ahash 0.8.12
    Source: https://github.com/tkaitchuck/ahash
    License: MIT OR Apache-2.0
  aligned 0.4.3
    Source: https://github.com/rust-embedded-community/aligned
    License: MIT OR Apache-2.0
  arbitrary 1.4.2
    Source: https://github.com/rust-fuzz/arbitrary/
    License: MIT OR Apache-2.0
  arc-swap 1.9.2
    Source: https://github.com/vorner/arc-swap
    License: MIT OR Apache-2.0
  arrayvec 0.7.8
    Source: https://github.com/bluss/arrayvec
    License: MIT OR Apache-2.0
  as-slice 0.2.1
    Source: https://github.com/japaric/as-slice
    License: MIT OR Apache-2.0
  async-channel 2.5.0
    Source: https://github.com/smol-rs/async-channel
    License: Apache-2.0 OR MIT
  async-executor 1.14.0
    Source: https://github.com/smol-rs/async-executor
    License: Apache-2.0 OR MIT
  async-io 2.6.0
    Source: https://github.com/smol-rs/async-io
    License: Apache-2.0 OR MIT
  async-lock 3.4.2
    Source: https://github.com/smol-rs/async-lock
    License: Apache-2.0 OR MIT
  async-process 2.5.0
    Source: https://github.com/smol-rs/async-process
    License: Apache-2.0 OR MIT
  async-signal 0.2.14
    Source: https://github.com/smol-rs/async-signal
    License: Apache-2.0 OR MIT
  async-task 4.7.1
    Source: https://github.com/smol-rs/async-task
    License: Apache-2.0 OR MIT
  atomic-waker 1.1.2
    Source: https://github.com/smol-rs/atomic-waker
    License: Apache-2.0 OR MIT
  autocfg 1.5.1
    Source: https://github.com/cuviper/autocfg
    License: Apache-2.0 OR MIT
  backtrace 0.3.76
    Source: https://github.com/rust-lang/backtrace-rs
    License: MIT OR Apache-2.0
  base64 0.22.1
    Source: https://github.com/marshallpierce/rust-base64
    License: MIT OR Apache-2.0
  base64 0.23.0
    Source: https://github.com/marshallpierce/rust-base64
    License: MIT OR Apache-2.0
  bitflags 1.3.2
    Source: https://github.com/bitflags/bitflags
    License: MIT OR Apache-2.0
  bitflags 2.13.1
    Source: https://github.com/bitflags/bitflags
    License: MIT OR Apache-2.0
  bitstream-io 4.10.0
    Source: https://github.com/tuffy/bitstream-io
    License: MIT OR Apache-2.0
  blocking 1.6.2
    Source: https://github.com/smol-rs/blocking
    License: Apache-2.0 OR MIT
  bstr 1.13.0
    Source: https://github.com/BurntSushi/bstr
    License: MIT OR Apache-2.0
  bumpalo 3.20.3
    Source: https://github.com/fitzgen/bumpalo
    License: MIT OR Apache-2.0
  cast 0.3.0
    Source: https://github.com/japaric/cast.rs
    License: MIT OR Apache-2.0
  cc 1.4.0
    Source: https://github.com/rust-lang/cc-rs
    License: MIT OR Apache-2.0
  cfg-if 0.1.10
    Source: https://github.com/alexcrichton/cfg-if
    License: MIT OR Apache-2.0
  cfg-if 1.0.4
    Source: https://github.com/rust-lang/cfg-if
    License: MIT OR Apache-2.0
  cmake 0.1.58
    Source: https://github.com/rust-lang/cmake-rs
    License: MIT OR Apache-2.0
  color-eyre 0.6.5
    Source: https://github.com/eyre-rs/eyre
    License: MIT OR Apache-2.0
  color-spantrace 0.3.0
    Source: https://github.com/eyre-rs/eyre
    License: MIT OR Apache-2.0
  concurrent-queue 2.5.0
    Source: https://github.com/smol-rs/concurrent-queue
    License: Apache-2.0 OR MIT
  core-foundation-sys 0.8.7
    Source: https://github.com/servo/core-foundation-rs
    License: MIT OR Apache-2.0
  core-foundation 0.10.1
    Source: https://github.com/servo/core-foundation-rs
    License: MIT OR Apache-2.0
  core-foundation 0.9.4
    Source: https://github.com/servo/core-foundation-rs
    License: MIT OR Apache-2.0
  criterion-plot 0.8.2
    Source: https://github.com/criterion-rs/criterion.rs
    License: Apache-2.0 OR MIT
  criterion 0.8.2
    Source: https://github.com/criterion-rs/criterion.rs
    License: Apache-2.0 OR MIT
  critical-section 1.2.0
    Source: https://github.com/rust-embedded/critical-section
    License: MIT OR Apache-2.0
  crossbeam-deque 0.8.7
    Source: https://github.com/crossbeam-rs/crossbeam
    License: MIT OR Apache-2.0
  crossbeam-epoch 0.9.20
    Source: https://github.com/crossbeam-rs/crossbeam
    License: MIT OR Apache-2.0
  crossbeam-utils 0.8.22
    Source: https://github.com/crossbeam-rs/crossbeam
    License: MIT OR Apache-2.0
  dbus-secret-service 4.1.0
    Source: https://github.com/brotskydotcom/dbus-secret-service.git
    License: MIT OR Apache-2.0
  displaydoc 0.2.6
    Source: https://github.com/yaahc/displaydoc
    License: MIT OR Apache-2.0
  either 1.17.0
    Source: https://github.com/rayon-rs/either
    License: MIT OR Apache-2.0
  encoding_rs_io 0.1.7
    Source: https://github.com/BurntSushi/encoding_rs_io
    License: MIT OR Apache-2.0
  equivalent 1.0.2
    Source: https://github.com/indexmap-rs/equivalent
    License: Apache-2.0 OR MIT
  errno 0.3.14
    Source: https://github.com/lambda-fairy/rust-errno
    License: MIT OR Apache-2.0
  event-listener-strategy 0.5.4
    Source: https://github.com/smol-rs/event-listener-strategy
    License: Apache-2.0 OR MIT
  event-listener 5.4.2
    Source: https://github.com/smol-rs/event-listener
    License: Apache-2.0 OR MIT
  eyre 0.6.12
    Source: https://github.com/eyre-rs/eyre
    License: MIT OR Apache-2.0
  fastrand 2.5.0
    Source: https://github.com/smol-rs/fastrand
    License: Apache-2.0 OR MIT
  filetime 0.2.29
    Source: https://github.com/alexcrichton/filetime
    License: MIT OR Apache-2.0
  find-msvc-tools 0.1.9
    Source: https://github.com/rust-lang/cc-rs
    License: MIT OR Apache-2.0
  fixedbitset 0.5.7
    Source: https://github.com/petgraph/fixedbitset
    License: MIT OR Apache-2.0
  flate2 1.1.9
    Source: https://github.com/rust-lang/flate2-rs
    License: MIT OR Apache-2.0
  fnv 1.0.7
    Source: https://github.com/servo/rust-fnv
    License: Apache-2.0  OR  MIT
  form_urlencoded 1.2.2
    Source: https://github.com/servo/rust-url
    License: MIT OR Apache-2.0
  fraction 0.15.4
    Source: https://github.com/dnsl48/fraction.git
    License: MIT OR Apache-2.0
  fs2 0.4.3
    Source: https://github.com/danburkert/fs2-rs
    License: MIT OR Apache-2.0
  futures-lite 2.6.1
    Source: https://github.com/smol-rs/futures-lite
    License: Apache-2.0 OR MIT
  futures-timer 3.0.4
    Source: https://github.com/async-rs/futures-timer
    License: MIT OR Apache-2.0
  gethostname 1.1.0
    Source: https://codeberg.org/swsnr/gethostname.rs.git
    License: Apache-2.0
  gimli 0.32.3
    Source: https://github.com/gimli-rs/gimli
    License: MIT OR Apache-2.0
  glob 0.3.4
    Source: https://github.com/rust-lang/glob
    License: MIT OR Apache-2.0
  hashbrown 0.15.5
    Source: https://github.com/rust-lang/hashbrown
    License: MIT OR Apache-2.0
  hashbrown 0.16.1
    Source: https://github.com/rust-lang/hashbrown
    License: MIT OR Apache-2.0
  hashbrown 0.17.1
    Source: https://github.com/rust-lang/hashbrown
    License: MIT OR Apache-2.0
  heck 0.5.0
    Source: https://github.com/withoutboats/heck
    License: MIT OR Apache-2.0
  hermit-abi 0.5.2
    Source: https://github.com/hermit-os/hermit-rs
    License: MIT OR Apache-2.0
  httparse 1.10.1
    Source: https://github.com/seanmonstar/httparse
    License: MIT OR Apache-2.0
  hyper-rustls 0.27.9
    Source: https://github.com/rustls/hyper-rustls
    License: Apache-2.0 OR ISC OR MIT
  idna 1.1.0
    Source: https://github.com/servo/rust-url/
    License: MIT OR Apache-2.0
  idna_adapter 1.2.2
    Source: https://github.com/hsivonen/idna_adapter
    License: Apache-2.0 OR MIT
  indexmap 2.14.0
    Source: https://github.com/indexmap-rs/indexmap
    License: Apache-2.0 OR MIT
  insta 1.48.0
    Source: https://github.com/mitsuhiko/insta
    License: Apache-2.0
  itertools 0.13.0
    Source: https://github.com/rust-itertools/itertools
    License: MIT OR Apache-2.0
  itertools 0.14.0
    Source: https://github.com/rust-itertools/itertools
    License: MIT OR Apache-2.0
  itertools 0.15.0
    Source: https://github.com/rust-itertools/itertools
    License: MIT OR Apache-2.0
  jobserver 0.1.35
    Source: https://github.com/rust-lang/jobserver-rs
    License: MIT OR Apache-2.0
  js-sys 0.3.103
    Source: https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/js-sys
    License: MIT OR Apache-2.0
  lazy_static 1.5.0
    Source: https://github.com/rust-lang-nursery/lazy-static.rs
    License: MIT OR Apache-2.0
  left-right 0.11.8
    Source: https://github.com/jonhoo/left-right.git
    License: MIT OR Apache-2.0
  libfuzzer-sys 0.4.13
    Source: https://github.com/rust-fuzz/libfuzzer
    License: (MIT OR Apache-2.0) AND NCSA
  linux-raw-sys 0.12.1
    Source: https://github.com/sunfishcode/linux-raw-sys
    License: Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT
  lock_api 0.4.14
    Source: https://github.com/Amanieu/parking_lot
    License: MIT OR Apache-2.0
  log 0.4.33
    Source: https://github.com/rust-lang/log
    License: MIT OR Apache-2.0
  mime 0.3.17
    Source: https://github.com/hyperium/mime
    License: MIT OR Apache-2.0
  miow 0.5.0
    Source: https://github.com/yoshuawuyts/miow
    License: MIT OR Apache-2.0
  num-bigint 0.4.8
    Source: https://github.com/rust-num/num-bigint
    License: MIT OR Apache-2.0
  num-complex 0.4.6
    Source: https://github.com/rust-num/num-complex
    License: MIT OR Apache-2.0
  num-derive 0.4.2
    Source: https://github.com/rust-num/num-derive
    License: MIT OR Apache-2.0
  num-integer 0.1.46
    Source: https://github.com/rust-num/num-integer
    License: MIT OR Apache-2.0
  num-iter 0.1.46
    Source: https://github.com/rust-num/num-iter
    License: MIT OR Apache-2.0
  num-rational 0.4.2
    Source: https://github.com/rust-num/num-rational
    License: MIT OR Apache-2.0
  num-traits 0.2.19
    Source: https://github.com/rust-num/num-traits
    License: MIT OR Apache-2.0
  num 0.4.3
    Source: https://github.com/rust-num/num
    License: MIT OR Apache-2.0
  num_cpus 1.17.0
    Source: https://github.com/seanmonstar/num_cpus
    License: MIT OR Apache-2.0
  object 0.37.3
    Source: https://github.com/gimli-rs/object
    License: Apache-2.0 OR MIT
  once_cell 1.21.4
    Source: https://github.com/matklad/once_cell
    License: MIT OR Apache-2.0
  openssl-probe 0.2.1
    Source: https://github.com/rustls/openssl-probe
    License: MIT OR Apache-2.0
  ordered-stream 0.2.0
    Source: https://github.com/danieldg/ordered-stream
    License: MIT OR Apache-2.0
  parking 2.2.1
    Source: https://github.com/smol-rs/parking
    License: Apache-2.0 OR MIT
  parking_lot 0.12.5
    Source: https://github.com/Amanieu/parking_lot
    License: MIT OR Apache-2.0
  parking_lot_core 0.9.12
    Source: https://github.com/Amanieu/parking_lot
    License: MIT OR Apache-2.0
  percent-encoding 2.3.2
    Source: https://github.com/servo/rust-url/
    License: MIT OR Apache-2.0
  petgraph 0.8.3
    Source: https://github.com/petgraph/petgraph
    License: MIT OR Apache-2.0
  piper 0.2.5
    Source: https://github.com/smol-rs/piper
    License: MIT OR Apache-2.0
  pkg-config 0.3.33
    Source: https://github.com/rust-lang/pkg-config-rs
    License: MIT OR Apache-2.0
  png 0.18.1
    Source: https://github.com/image-rs/image-png
    License: MIT OR Apache-2.0
  polling 3.11.0
    Source: https://github.com/smol-rs/polling
    License: Apache-2.0 OR MIT
  proptest 1.11.0
    Source: https://github.com/proptest-rs/proptest
    License: MIT OR Apache-2.0
  rayon-core 1.13.0
    Source: https://github.com/rayon-rs/rayon
    License: MIT OR Apache-2.0
  rayon 1.12.0
    Source: https://github.com/rayon-rs/rayon
    License: MIT OR Apache-2.0
  regex-automata 0.4.16
    Source: https://github.com/rust-lang/regex
    License: MIT OR Apache-2.0
  regex-syntax 0.8.11
    Source: https://github.com/rust-lang/regex
    License: MIT OR Apache-2.0
  regex 1.13.1
    Source: https://github.com/rust-lang/regex
    License: MIT OR Apache-2.0
  ring 0.17.14
    Source: https://github.com/briansmith/ring
    License: Apache-2.0 AND ISC
  rustc-demangle 0.1.28
    Source: https://github.com/rust-lang/rustc-demangle
    License: MIT OR Apache-2.0
  rustc-hash 1.1.0
    Source: https://github.com/rust-lang-nursery/rustc-hash
    License: Apache-2.0 OR MIT
  rustc_version 0.4.1
    Source: https://github.com/djc/rustc-version-rs
    License: MIT OR Apache-2.0
  rustix 1.1.4
    Source: https://github.com/bytecodealliance/rustix
    License: Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT
  rustls-native-certs 0.8.4
    Source: https://github.com/rustls/rustls-native-certs
    License: Apache-2.0 OR ISC OR MIT
  rustls 0.23.42
    Source: https://github.com/rustls/rustls
    License: Apache-2.0 OR ISC OR MIT
  rusty-fork 0.3.1
    Source: https://github.com/altsysrq/rusty-fork
    License: MIT OR Apache-2.0
  scoped-tls 1.0.1
    Source: https://github.com/alexcrichton/scoped-tls
    License: MIT OR Apache-2.0
  scopeguard 1.2.0
    Source: https://github.com/bluss/scopeguard
    License: MIT OR Apache-2.0
  security-framework-sys 2.17.0
    Source: https://github.com/kornelski/rust-security-framework
    License: MIT OR Apache-2.0
  security-framework 3.7.0
    Source: https://github.com/kornelski/rust-security-framework
    License: MIT OR Apache-2.0
  self-replace 1.5.0
    Source: https://github.com/mitsuhiko/self-replace
    License: Apache-2.0
  send_wrapper 0.6.0
    Source: https://github.com/thk1/send_wrapper
    License: MIT OR Apache-2.0
  serde_with 3.21.0
    Source: https://github.com/jonasbb/serde_with/
    License: MIT OR Apache-2.0
  serde_with_macros 3.21.0
    Source: https://github.com/jonasbb/serde_with/
    License: MIT OR Apache-2.0
  shell-escape 0.1.5
    Source: https://github.com/sfackler/shell-escape
    License: MIT OR Apache-2.0
  signal-hook-mio 0.2.5
    Source: https://github.com/vorner/signal-hook
    License: MIT OR Apache-2.0
  signal-hook-registry 1.4.8
    Source: https://github.com/vorner/signal-hook
    License: MIT OR Apache-2.0
  signal-hook 0.3.18
    Source: https://github.com/vorner/signal-hook
    License: Apache-2.0 OR MIT
  signal-hook 0.4.4
    Source: https://github.com/vorner/signal-hook
    License: MIT OR Apache-2.0
  simd_cesu8 1.2.0
    Source: https://github.com/seancroach/simd_cesu8
    License: Apache-2.0 OR MIT
  similar 2.7.0
    Source: https://github.com/mitsuhiko/similar
    License: Apache-2.0
  smallvec 1.15.2
    Source: https://github.com/servo/rust-smallvec
    License: MIT OR Apache-2.0
  socket2 0.6.5
    Source: https://github.com/rust-lang/socket2
    License: MIT OR Apache-2.0
  stable_deref_trait 1.2.1
    Source: https://github.com/storyyeller/stable_deref_trait
    License: MIT OR Apache-2.0
  system-configuration-sys 0.6.0
    Source: https://github.com/mullvad/system-configuration-rs
    License: MIT OR Apache-2.0
  system-configuration 0.7.0
    Source: https://github.com/mullvad/system-configuration-rs
    License: MIT OR Apache-2.0
  tar 0.4.46
    Source: https://github.com/composefs/tar-rs
    License: MIT OR Apache-2.0
  tempfile 3.27.0
    Source: https://github.com/Stebalien/tempfile
    License: MIT OR Apache-2.0
  thread_local 1.1.10
    Source: https://github.com/Amanieu/thread_local-rs
    License: MIT OR Apache-2.0
  tinytemplate 1.2.1
    Source: https://github.com/bheisler/TinyTemplate
    License: Apache-2.0 OR MIT
  tungstenite 0.30.0
    Source: https://github.com/snapview/tungstenite-rs
    License: MIT OR Apache-2.0
  ucd-trie 0.1.7
    Source: https://github.com/BurntSushi/ucd-generate
    License: MIT OR Apache-2.0
  unicase 2.9.0
    Source: https://github.com/seanmonstar/unicase
    License: MIT OR Apache-2.0
  unicode-segmentation 1.13.3
    Source: https://github.com/unicode-rs/unicode-segmentation
    License: MIT OR Apache-2.0
  unicode-truncate 2.0.1
    Source: https://github.com/Aetf/unicode-truncate
    License: MIT OR Apache-2.0
  unicode-width-16 0.1.0
    Source: https://github.com/alacritty/unicode-width-16
    License: MIT OR Apache-2.0
  unicode-width 0.2.2
    Source: https://github.com/unicode-rs/unicode-width
    License: MIT OR Apache-2.0
  unicode-xid 0.2.6
    Source: https://github.com/unicode-rs/unicode-xid
    License: MIT OR Apache-2.0
  url 2.5.8
    Source: https://github.com/servo/rust-url
    License: MIT OR Apache-2.0
  uuid 1.24.0
    Source: https://github.com/uuid-rs/uuid
    License: Apache-2.0 OR MIT
  version_check 0.9.5
    Source: https://github.com/SergioBenitez/version_check
    License: MIT OR Apache-2.0
  wait-timeout 0.2.1
    Source: https://github.com/alexcrichton/wait-timeout
    License: MIT OR Apache-2.0
  wasi 0.11.1+wasi-snapshot-preview1
    Source: https://github.com/bytecodealliance/wasi
    License: Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT
  wasip2 1.0.4+wasi-0.2.12
    Source: https://github.com/bytecodealliance/wasi-rs
    License: Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT
  wasm-bindgen-futures 0.4.76
    Source: https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/futures
    License: MIT OR Apache-2.0
  wasm-bindgen-macro-support 0.2.126
    Source: https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/macro-support
    License: MIT OR Apache-2.0
  wasm-bindgen-macro 0.2.126
    Source: https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/macro
    License: MIT OR Apache-2.0
  wasm-bindgen-shared 0.2.126
    Source: https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/shared
    License: MIT OR Apache-2.0
  wasm-bindgen 0.2.126
    Source: https://github.com/wasm-bindgen/wasm-bindgen
    License: MIT OR Apache-2.0
  web-sys 0.3.103
    Source: https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/web-sys
    License: MIT OR Apache-2.0
  wiremock 0.6.5
    Source: https://github.com/LukeMathWalker/wiremock-rs
    License: MIT OR Apache-2.0
  wit-bindgen 0.57.1
    Source: https://github.com/bytecodealliance/wit-bindgen
    License: Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT
  wl-clipboard-rs 0.9.3
    Source: https://github.com/YaLTeR/wl-clipboard-rs
    License: MIT OR Apache-2.0
  xattr 1.6.1
    Source: https://github.com/Stebalien/xattr
    License: MIT OR Apache-2.0
  yaml-rust 0.4.5
    Source: https://github.com/chyh1990/yaml-rust
    License: MIT OR Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  shared_library 0.1.9
    Source: https://github.com/tomaka/shared_library/
    License: Apache-2.0 OR MIT
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  bit-set 0.5.3
    Source: https://github.com/contain-rs/bit-set
    License: MIT OR Apache-2.0
  bit-set 0.8.0
    Source: https://github.com/contain-rs/bit-set
    License: Apache-2.0 OR MIT
  bit-vec 0.6.3
    Source: https://github.com/contain-rs/bit-vec
    License: MIT OR Apache-2.0
  bit-vec 0.8.0
    Source: https://github.com/contain-rs/bit-vec
    License: Apache-2.0 OR MIT
  downcast-rs 1.2.1
    Source: https://github.com/marcianx/downcast-rs
    License: MIT OR Apache-2.0
  linked-hash-map 0.5.6
    Source: https://github.com/contain-rs/linked-hash-map
    License: MIT OR Apache-2.0
  minimal-lexical 0.2.1
    Source: https://github.com/Alexhuszagh/minimal-lexical
    License: MIT OR Apache-2.0
  qoi 0.4.1
    Source: https://github.com/aldanor/qoi-rust
    License: MIT OR Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  hkdf 0.12.4
    Source: https://github.com/RustCrypto/KDFs/
    License: MIT OR Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  aes 0.8.4
    Source: https://github.com/RustCrypto/block-ciphers
    License: MIT OR Apache-2.0
  block-buffer 0.10.4
    Source: https://github.com/RustCrypto/utils
    License: MIT OR Apache-2.0
  block-buffer 0.12.1
    Source: https://github.com/RustCrypto/utils
    License: MIT OR Apache-2.0
  block-padding 0.3.3
    Source: https://github.com/RustCrypto/utils
    License: MIT OR Apache-2.0
  cbc 0.1.2
    Source: https://github.com/RustCrypto/block-modes
    License: MIT OR Apache-2.0
  chacha20 0.10.1
    Source: https://github.com/RustCrypto/stream-ciphers
    License: MIT OR Apache-2.0
  cipher 0.4.4
    Source: https://github.com/RustCrypto/traits
    License: MIT OR Apache-2.0
  const-oid 0.10.2
    Source: https://github.com/RustCrypto/formats
    License: Apache-2.0 OR MIT
  cpufeatures 0.2.17
    Source: https://github.com/RustCrypto/utils
    License: MIT OR Apache-2.0
  cpufeatures 0.3.0
    Source: https://github.com/RustCrypto/utils
    License: MIT OR Apache-2.0
  crypto-common 0.1.7
    Source: https://github.com/RustCrypto/traits
    License: MIT OR Apache-2.0
  crypto-common 0.2.2
    Source: https://github.com/RustCrypto/traits
    License: MIT OR Apache-2.0
  digest 0.10.7
    Source: https://github.com/RustCrypto/traits
    License: MIT OR Apache-2.0
  digest 0.11.3
    Source: https://github.com/RustCrypto/traits
    License: MIT OR Apache-2.0
  hmac 0.12.1
    Source: https://github.com/RustCrypto/MACs
    License: MIT OR Apache-2.0
  hybrid-array 0.4.13
    Source: https://github.com/RustCrypto/hybrid-array
    License: MIT OR Apache-2.0
  inout 0.1.4
    Source: https://github.com/RustCrypto/utils
    License: MIT OR Apache-2.0
  sha1 0.10.7
    Source: https://github.com/RustCrypto/hashes
    License: MIT OR Apache-2.0
  sha1 0.11.0
    Source: https://github.com/RustCrypto/hashes
    License: MIT OR Apache-2.0
  sha2 0.10.9
    Source: https://github.com/RustCrypto/hashes
    License: MIT OR Apache-2.0
  sha2 0.11.0
    Source: https://github.com/RustCrypto/hashes
    License: MIT OR Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  webbrowser 1.2.2
    Source: https://github.com/amodm/webbrowser-rs
    License: MIT OR Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  rand_core 0.10.1
    Source: https://github.com/rust-random/rand_core
    License: MIT OR Apache-2.0
  rand_core 0.9.5
    Source: https://github.com/rust-random/rand
    License: MIT OR Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  getrandom 0.2.17
    Source: https://github.com/rust-random/getrandom
    License: MIT OR Apache-2.0
  getrandom 0.3.4
    Source: https://github.com/rust-random/getrandom
    License: MIT OR Apache-2.0
  getrandom 0.4.3
    Source: https://github.com/rust-random/getrandom
    License: MIT OR Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  adler2 2.0.1
    Source: https://github.com/oyvindln/adler2
    License: 0BSD OR MIT OR Apache-2.0
  proc-macro-crate 3.5.0
    Source: https://github.com/bkchr/proc-macro-crate
    License: MIT OR Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  windows-native-keyring-store 1.1.0
    Source: https://github.com/open-source-cooperative/windows-native-keyring-store.git
    License: MIT OR Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  miow 0.6.1
    Source: https://github.com/yoshuawuyts/miow
    License: MIT OR Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  enumflags2 0.7.12
    Source: https://github.com/meithecatte/enumflags2
    License: MIT OR Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  enumflags2_derive 0.7.12
    Source: https://github.com/meithecatte/enumflags2
    License: MIT OR Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  dbus 0.9.12
    Source: https://github.com/diwic/dbus-rs
    License: Apache-2.0 OR MIT
  libdbus-sys 0.2.7
    Source: https://github.com/diwic/dbus-rs
    License: Apache-2.0 OR MIT
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  bytemuck 1.25.2
    Source: https://github.com/Lokathor/bytemuck
    License: Zlib OR Apache-2.0 OR MIT
  bytemuck_derive 1.11.0
    Source: https://github.com/Lokathor/bytemuck
    License: Zlib OR Apache-2.0 OR MIT
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  httpdate 1.0.3
    Source: https://github.com/pyfisch/httpdate
    License: MIT OR Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  vtcode-a2a 0.141.12
    Source: https://github.com/vinhnx/vtcode
    License: MIT OR Apache-2.0
  vtcode-acp 0.141.12
    Source: https://github.com/vinhnx/vtcode
    License: MIT OR Apache-2.0
  vtcode-auth 0.141.12
    Source: https://github.com/vinhnx/vtcode
    License: MIT OR Apache-2.0
  vtcode-bash-runner 0.141.12
    Source: https://github.com/vinhnx/vtcode
    License: MIT OR Apache-2.0
  vtcode-config 0.141.12
    Source: https://github.com/vinhnx/vtcode
    License: MIT OR Apache-2.0
  vtcode-core 0.141.12
    Source: https://github.com/vinhnx/vtcode
    License: MIT OR Apache-2.0
  vtcode-eval 0.141.12
    Source: https://github.com/vinhnx/vtcode
    License: MIT OR Apache-2.0
  vtcode-indexer 0.141.12
    Source: https://github.com/vinhnx/vtcode
    License: MIT OR Apache-2.0
  vtcode-llm 0.141.12
    Source: https://github.com/vinhnx/vtcode
    License: MIT OR Apache-2.0
  vtcode-mcp 0.141.12
    Source: https://github.com/vinhnx/vtcode
    License: MIT OR Apache-2.0
  vtcode-memory 0.141.12
    Source: https://github.com/vinhnx/vtcode
    License: MIT OR Apache-2.0
  vtcode-safety 0.141.12
    Source: https://github.com/vinhnx/vtcode
    License: MIT OR Apache-2.0
  vtcode-skills 0.141.12
    Source: https://github.com/vinhnx/vtcode
    License: MIT OR Apache-2.0
  vtcode-ui 0.141.12
    Source: https://github.com/vinhnx/vtcode
    License: MIT OR Apache-2.0
  vtcode-commons 0.141.12
    Source: https://github.com/vinhnx/vtcode
    License: MIT OR Apache-2.0
  vtcode-exec-events 0.141.12
    Source: https://github.com/vinhnx/vtcode
    License: MIT OR Apache-2.0
  vtcode-macros 0.141.12
    Source: https://github.com/vinhnx/vtcode
    License: MIT OR Apache-2.0
  vtcode-utility-tool-specs 0.141.12
    Source: https://github.com/vinhnx/vtcode
    License: MIT OR Apache-2.0
  agent-client-protocol-derive 2.0.0
    Source: https://github.com/agentclientprotocol/rust-sdk
    License: Apache-2.0
  agent-client-protocol-schema 1.5.0
    Source: https://github.com/agentclientprotocol/agent-client-protocol
    License: Apache-2.0
  agent-client-protocol 2.0.0
    Source: https://github.com/agentclientprotocol/rust-sdk
    License: Apache-2.0
  allocator-api2 0.2.21
    Source: https://github.com/zakarumych/allocator-api2
    License: MIT OR Apache-2.0
  android_system_properties 0.1.5
    Source: https://github.com/nical/android_system_properties
    License: MIT OR Apache-2.0
  anes 0.1.6
    Source: https://github.com/zrzka/anes-rs
    License: MIT OR Apache-2.0
  anyhow 1.0.104
    Source: https://github.com/dtolnay/anyhow
    License: MIT OR Apache-2.0
  arboard 3.6.1
    Source: https://github.com/1Password/arboard
    License: MIT OR Apache-2.0
  arraydeque 0.5.1
    Source: https://github.com/andylokandy/arraydeque
    License: MIT OR Apache-2.0
  async-trait 0.1.91
    Source: https://github.com/dtolnay/async-trait
    License: MIT OR Apache-2.0
  aws-lc-sys 0.43.0
    Source: https://github.com/aws/aws-lc-rs
    License: ISC AND (Apache-2.0 OR ISC) AND Apache-2.0 AND MIT AND BSD-3-Clause AND (Apache-2.0 OR ISC OR MIT) AND (Apache-2.0 OR ISC OR MIT-0)
  directories 6.0.0
    Source: https://github.com/soc/directories-rs
    License: MIT OR Apache-2.0
  dirs-sys 0.5.0
    Source: https://github.com/dirs-dev/dirs-sys-rs
    License: MIT OR Apache-2.0
  dirs 6.0.0
    Source: https://github.com/soc/dirs-rs
    License: MIT OR Apache-2.0
  document-features 0.2.12
    Source: https://github.com/slint-ui/document-features
    License: MIT OR Apache-2.0
  dunce 1.0.5
    Source: https://gitlab.com/kornelski/dunce
    License: CC0-1.0 OR MIT-0 OR Apache-2.0
  dyn-clone 1.0.20
    Source: https://github.com/dtolnay/dyn-clone
    License: MIT OR Apache-2.0
  eventsource-stream 0.2.3
    Source: https://github.com/jpopesculian/eventsource-stream
    License: MIT OR Apache-2.0
  fdeflate 0.3.7
    Source: https://github.com/image-rs/fdeflate
    License: MIT OR Apache-2.0
  gloo-timers 0.4.0
    Source: https://github.com/rustwasm/gloo/tree/master/crates/timers
    License: MIT OR Apache-2.0
  granit-parser 0.0.7
    Source: https://github.com/bourumir-wyngs/granit-parser
    License: MIT OR Apache-2.0
  half 2.7.1
    Source: https://github.com/VoidStarKat/half-rs
    License: MIT OR Apache-2.0
  ident_case 1.0.1
    Source: https://github.com/TedDriggs/ident_case
    License: MIT OR Apache-2.0
  image-webp 0.2.4
    Source: https://github.com/image-rs/image-webp
    License: MIT OR Apache-2.0
  image 0.25.10
    Source: https://github.com/image-rs/image
    License: MIT OR Apache-2.0
  indenter 0.3.4
    Source: https://github.com/yaahc/indenter
    License: MIT OR Apache-2.0
  indoc 2.0.7
    Source: https://github.com/dtolnay/indoc
    License: MIT OR Apache-2.0
  itoa 1.0.18
    Source: https://github.com/dtolnay/itoa
    License: MIT OR Apache-2.0
  jni-macros 0.22.4
    Source: https://github.com/jni-rs/jni-rs
    License: MIT OR Apache-2.0
  jni-sys-macros 0.4.1
    Source: https://github.com/jni-rs/jni-sys
    License: MIT OR Apache-2.0
  jni 0.22.4
    Source: https://github.com/jni-rs/jni-rs
    License: MIT OR Apache-2.0
  libc 0.2.189
    Source: https://github.com/rust-lang/libc
    License: MIT OR Apache-2.0
  linkme-impl 0.3.37
    Source: https://github.com/dtolnay/linkme
    License: MIT OR Apache-2.0
  linkme 0.3.37
    Source: https://github.com/dtolnay/linkme
    License: MIT OR Apache-2.0
  litrs 1.0.0
    Source: https://github.com/LukasKalbertodt/litrs
    License: MIT OR Apache-2.0
  mac-notification-sys 0.6.15
    Source: https://github.com/h4llow3En/mac-notification-sys
    License: MIT OR Apache-2.0
  miniz_oxide 0.8.9
    Source: https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide
    License: MIT OR Zlib OR Apache-2.0
  ndk-context 0.1.1
    Source: https://github.com/rust-windowing/android-ndk-rs
    License: MIT OR Apache-2.0
  num-cmp 0.1.0
    Source: https://github.com/lifthrasiir/num-cmp
    License: MIT OR Apache-2.0
  num-conv 0.2.2
    Source: https://github.com/jhpratt/num-conv
    License: MIT OR Apache-2.0
  objc2-app-kit 0.3.2
    Source: https://github.com/madsmtm/objc2
    License: Zlib OR Apache-2.0 OR MIT
  objc2-core-foundation 0.3.2
    Source: https://github.com/madsmtm/objc2
    License: Zlib OR Apache-2.0 OR MIT
  objc2-core-graphics 0.3.2
    Source: https://github.com/madsmtm/objc2
    License: Zlib OR Apache-2.0 OR MIT
  objc2-io-kit 0.3.2
    Source: https://github.com/madsmtm/objc2
    License: Zlib OR Apache-2.0 OR MIT
  paste 1.0.15
    Source: https://github.com/dtolnay/paste
    License: MIT OR Apache-2.0
  pastey 0.1.1
    Source: https://github.com/as1100k/pastey
    License: MIT OR Apache-2.0
  pastey 0.2.3
    Source: https://github.com/as1100k/pastey
    License: MIT OR Apache-2.0
  path-clean 1.0.1
    Source: https://github.com/danreeves/path-clean
    License: MIT OR Apache-2.0
  pin-project-internal 1.1.13
    Source: https://github.com/taiki-e/pin-project
    License: Apache-2.0 OR MIT
  pin-project-lite 0.2.17
    Source: https://github.com/taiki-e/pin-project-lite
    License: Apache-2.0 OR MIT
  pin-project 1.1.13
    Source: https://github.com/taiki-e/pin-project
    License: Apache-2.0 OR MIT
  prettyplease 0.2.37
    Source: https://github.com/dtolnay/prettyplease
    License: MIT OR Apache-2.0
  proc-macro2 1.0.107
    Source: https://github.com/dtolnay/proc-macro2
    License: MIT OR Apache-2.0
  process-wrap 9.1.0
    Source: https://github.com/watchexec/process-wrap
    License: Apache-2.0 OR MIT
  profiling-procmacros 1.0.18
    Source: https://github.com/aclysma/profiling
    License: MIT OR Apache-2.0
  profiling 1.0.18
    Source: https://github.com/aclysma/profiling
    License: MIT OR Apache-2.0
  quote 1.0.47
    Source: https://github.com/dtolnay/quote
    License: MIT OR Apache-2.0
  r-efi 5.3.0
    Source: https://github.com/r-efi/r-efi
    License: MIT OR Apache-2.0 OR LGPL-2.1-or-later
  r-efi 6.0.0
    Source: https://github.com/r-efi/r-efi
    License: MIT OR Apache-2.0 OR LGPL-2.1-or-later
  rand 0.10.2
    Source: https://github.com/rust-random/rand
    License: MIT OR Apache-2.0
  rand 0.9.5
    Source: https://github.com/rust-random/rand
    License: MIT OR Apache-2.0
  rand_chacha 0.9.0
    Source: https://github.com/rust-random/rand
    License: MIT OR Apache-2.0
  rand_xorshift 0.4.0
    Source: https://github.com/rust-random/rngs
    License: MIT OR Apache-2.0
  ref-cast-impl 1.0.26
    Source: https://github.com/dtolnay/ref-cast
    License: MIT OR Apache-2.0
  ref-cast 1.0.26
    Source: https://github.com/dtolnay/ref-cast
    License: MIT OR Apache-2.0
  rmcp-macros 3.1.0
    Source: https://github.com/modelcontextprotocol/rust-sdk/
    License: Apache-2.0
  rmcp 3.0.0
    Source: https://github.com/modelcontextprotocol/rust-sdk/
    License: Apache-2.0
  rustc-hash 2.1.3
    Source: https://github.com/rust-lang/rustc-hash
    License: Apache-2.0 OR MIT
  rustls-platform-verifier-android 0.1.1
    Source: https://github.com/rustls/rustls-platform-verifier
    License: MIT OR Apache-2.0
  rustversion 1.0.23
    Source: https://github.com/dtolnay/rustversion
    License: MIT OR Apache-2.0
  ryu 1.0.23
    Source: https://github.com/dtolnay/ryu
    License: Apache-2.0 OR BSL-1.0
  semver 1.0.28
    Source: https://github.com/dtolnay/semver
    License: MIT OR Apache-2.0
  serde-saphyr 0.0.29
    Source: https://github.com/bourumir-wyngs/serde-saphyr
    License: MIT OR Apache-2.0
  serde 1.0.229
    Source: https://github.com/serde-rs/serde
    License: MIT OR Apache-2.0
  serde_core 1.0.229
    Source: https://github.com/serde-rs/serde
    License: MIT OR Apache-2.0
  serde_derive 1.0.229
    Source: https://github.com/serde-rs/serde
    License: MIT OR Apache-2.0
  serde_derive_internals 0.30.0
    Source: https://github.com/serde-rs/serde
    License: MIT OR Apache-2.0
  serde_json 1.0.151
    Source: https://github.com/serde-rs/json
    License: MIT OR Apache-2.0
  serde_path_to_error 0.1.20
    Source: https://github.com/dtolnay/path-to-error
    License: MIT OR Apache-2.0
  serde_repr 0.1.21
    Source: https://github.com/dtolnay/serde-repr
    License: MIT OR Apache-2.0
  serde_urlencoded 0.7.1
    Source: https://github.com/nox/serde_urlencoded
    License: MIT OR Apache-2.0
  serial2 0.2.37
    Source: https://github.com/de-vri-es/serial2-rs
    License: BSD-2-Clause OR Apache-2.0
  shlex 2.0.1
    Source: https://github.com/comex/rust-shlex
    License: MIT OR Apache-2.0
  simdutf8 0.1.5
    Source: https://github.com/rusticstuff/simdutf8
    License: MIT OR Apache-2.0
  siphasher 1.0.3
    Source: https://github.com/jedisct1/rust-siphash
    License: MIT OR Apache-2.0
  syn 2.0.119
    Source: https://github.com/dtolnay/syn
    License: MIT OR Apache-2.0
  syn 3.0.3
    Source: https://github.com/dtolnay/syn
    License: MIT OR Apache-2.0
  sync_wrapper 1.0.2
    Source: https://github.com/Actyx/sync_wrapper
    License: Apache-2.0
  tauri-winrt-notification 0.7.3
    Source: https://github.com/tauri-apps/winrt-notification
    License: MIT OR Apache-2.0
  thiserror-impl 1.0.69
    Source: https://github.com/dtolnay/thiserror
    License: MIT OR Apache-2.0
  thiserror-impl 2.0.19
    Source: https://github.com/dtolnay/thiserror
    License: MIT OR Apache-2.0
  thiserror 1.0.69
    Source: https://github.com/dtolnay/thiserror
    License: MIT OR Apache-2.0
  thiserror 2.0.19
    Source: https://github.com/dtolnay/thiserror
    License: MIT OR Apache-2.0
  time-core 0.1.9
    Source: https://github.com/time-rs/time
    License: MIT OR Apache-2.0
  time 0.3.54
    Source: https://github.com/time-rs/time
    License: MIT OR Apache-2.0
  typed-path 0.12.3
    Source: https://github.com/chipsenkbeil/typed-path
    License: MIT OR Apache-2.0
  unicode-ident 1.0.24
    Source: https://github.com/dtolnay/unicode-ident
    License: (MIT OR Apache-2.0) AND Unicode-3.0
  utf8parse 0.2.2
    Source: https://github.com/alacritty/vte
    License: Apache-2.0 OR MIT
  wasm-streams 0.4.2
    Source: https://github.com/MattiasBuelens/wasm-streams/
    License: MIT OR Apache-2.0
  wasm-streams 0.5.0
    Source: https://github.com/MattiasBuelens/wasm-streams/
    License: MIT OR Apache-2.0
  winapi-i686-pc-windows-gnu 0.4.0
    Source: https://github.com/retep998/winapi-rs
    License: MIT OR Apache-2.0
  winapi-x86_64-pc-windows-gnu 0.4.0
    Source: https://github.com/retep998/winapi-rs
    License: MIT OR Apache-2.0
  zune-inflate 0.2.54
    License: MIT OR Apache-2.0 OR Zlib
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  vtcode 0.141.12
    Source: https://github.com/vinhnx/vtcode
    License: MIT OR Apache-2.0
--------------------------------------------------------------------------------
Apache License 2.0 — SPDX: Apache-2.0
--------------------------------------------------------------------------------
  chrono 0.4.45
    Source: https://github.com/chronotope/chrono
    License: MIT OR Apache-2.0
--------------------------------------------------------------------------------
BSD 2-Clause "Simplified" License — SPDX: BSD-2-Clause
--------------------------------------------------------------------------------
  v_frame 0.3.9
    Source: https://github.com/rust-av/v_frame
    License: BSD-2-Clause
--------------------------------------------------------------------------------
BSD 2-Clause "Simplified" License — SPDX: BSD-2-Clause
--------------------------------------------------------------------------------
  rav1e 0.8.1
    Source: https://github.com/xiph/rav1e/
    License: BSD-2-Clause
--------------------------------------------------------------------------------
BSD 2-Clause "Simplified" License — SPDX: BSD-2-Clause
--------------------------------------------------------------------------------
  av1-grain 0.2.5
    Source: https://github.com/rust-av/av1-grain
    License: BSD-2-Clause
--------------------------------------------------------------------------------
BSD 3-Clause "New" or "Revised" License — SPDX: BSD-3-Clause
--------------------------------------------------------------------------------
  fuchsia-zircon 0.3.3
    Source: https://fuchsia.googlesource.com/garnet/
    License: BSD-3-Clause
--------------------------------------------------------------------------------
BSD 3-Clause "New" or "Revised" License — SPDX: BSD-3-Clause
--------------------------------------------------------------------------------
  matchit 0.8.4
    Source: https://github.com/ibraheemdev/matchit
    License: MIT AND BSD-3-Clause
--------------------------------------------------------------------------------
BSD 3-Clause "New" or "Revised" License — SPDX: BSD-3-Clause
--------------------------------------------------------------------------------
  avif-serialize 0.8.9
    Source: https://github.com/kornelski/avif-serialize
    License: BSD-3-Clause
--------------------------------------------------------------------------------
BSD 3-Clause "New" or "Revised" License — SPDX: BSD-3-Clause
--------------------------------------------------------------------------------
  ravif 0.13.0
    Source: https://github.com/kornelski/cavif-rs
    License: BSD-3-Clause
--------------------------------------------------------------------------------
BSD 3-Clause "New" or "Revised" License — SPDX: BSD-3-Clause
--------------------------------------------------------------------------------
  subtle 2.6.1
    Source: https://github.com/dalek-cryptography/subtle
    License: BSD-3-Clause
--------------------------------------------------------------------------------
BSD 3-Clause "New" or "Revised" License — SPDX: BSD-3-Clause
--------------------------------------------------------------------------------
  lebe 0.5.3
    Source: https://github.com/johannesvollmer/lebe
    License: BSD-3-Clause
--------------------------------------------------------------------------------
BSD 3-Clause "New" or "Revised" License — SPDX: BSD-3-Clause
--------------------------------------------------------------------------------
  aws-lc-sys 0.43.0
    Source: https://github.com/aws/aws-lc-rs
    License: ISC AND (Apache-2.0 OR ISC) AND Apache-2.0 AND MIT AND BSD-3-Clause AND (Apache-2.0 OR ISC OR MIT) AND (Apache-2.0 OR ISC OR MIT-0)
  exr 1.74.2
    Source: https://github.com/johannesvollmer/exrs
    License: BSD-3-Clause
  fuchsia-zircon-sys 0.3.3
    Source: https://fuchsia.googlesource.com/garnet/
    License: BSD-3-Clause
--------------------------------------------------------------------------------
BSD 3-Clause "New" or "Revised" License — SPDX: BSD-3-Clause
--------------------------------------------------------------------------------
  encoding_rs 0.8.35
    Source: https://github.com/hsivonen/encoding_rs
    License: (Apache-2.0 OR MIT) AND BSD-3-Clause
--------------------------------------------------------------------------------
Boost Software License 1.0 — SPDX: BSL-1.0
--------------------------------------------------------------------------------
  error-code 3.3.2
    Source: https://github.com/DoumanAsh/error-code
    License: BSL-1.0
--------------------------------------------------------------------------------
Boost Software License 1.0 — SPDX: BSL-1.0
--------------------------------------------------------------------------------
  clipboard-win 5.4.1
    Source: https://github.com/DoumanAsh/clipboard-win
    License: BSL-1.0
--------------------------------------------------------------------------------
Creative Commons Zero v1.0 Universal — SPDX: CC0-1.0
--------------------------------------------------------------------------------
  notify 8.2.0
    Source: https://github.com/notify-rs/notify.git
    License: CC0-1.0
--------------------------------------------------------------------------------
Community Data License Agreement Permissive 2.0 — SPDX: CDLA-Permissive-2.0
--------------------------------------------------------------------------------
  webpki-root-certs 1.0.9
    Source: https://github.com/rustls/webpki-roots
    License: CDLA-Permissive-2.0
  webpki-roots 0.26.11
    Source: https://github.com/rustls/webpki-roots
    License: CDLA-Permissive-2.0
  webpki-roots 1.0.9
    Source: https://github.com/rustls/webpki-roots
    License: CDLA-Permissive-2.0
--------------------------------------------------------------------------------
ISC License — SPDX: ISC
--------------------------------------------------------------------------------
  untrusted 0.9.0
    Source: https://github.com/briansmith/untrusted
    License: ISC
--------------------------------------------------------------------------------
ISC License — SPDX: ISC
--------------------------------------------------------------------------------
  inotify-sys 0.1.8
    Source: https://github.com/hannobraun/inotify-sys
    License: ISC
--------------------------------------------------------------------------------
ISC License — SPDX: ISC
--------------------------------------------------------------------------------
  inotify 0.11.4
    Source: https://github.com/hannobraun/inotify-rs
    License: ISC
--------------------------------------------------------------------------------
ISC License — SPDX: ISC
--------------------------------------------------------------------------------
  ring 0.17.14
    Source: https://github.com/briansmith/ring
    License: Apache-2.0 AND ISC
--------------------------------------------------------------------------------
ISC License — SPDX: ISC
--------------------------------------------------------------------------------
  libloading 0.9.0
    Source: https://github.com/nagisa/rust_libloading/
    License: ISC
--------------------------------------------------------------------------------
ISC License — SPDX: ISC
--------------------------------------------------------------------------------
  rustls-webpki 0.103.13
    Source: https://github.com/rustls/webpki
    License: ISC
--------------------------------------------------------------------------------
ISC License — SPDX: ISC
--------------------------------------------------------------------------------
  aws-lc-rs 1.17.3
    Source: https://github.com/aws/aws-lc-rs
    License: ISC AND (Apache-2.0 OR ISC)
  aws-lc-sys 0.43.0
    Source: https://github.com/aws/aws-lc-rs
    License: ISC AND (Apache-2.0 OR ISC) AND Apache-2.0 AND MIT AND BSD-3-Clause AND (Apache-2.0 OR ISC OR MIT) AND (Apache-2.0 OR ISC OR MIT-0)
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  uds_windows 1.2.1
    Source: https://github.com/haraldh/rust_uds_windows
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  instability 0.3.12
    Source: https://github.com/ratatui/instability
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  dotenvy 0.15.7
    Source: https://github.com/allan2/dotenvy
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  mio 1.2.2
    Source: https://github.com/tokio-rs/mio
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  nom 7.1.3
    Source: https://github.com/Geal/nom
    License: MIT
  nom 8.0.0
    Source: https://github.com/rust-bakery/nom
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  float-cmp 0.10.0
    Source: https://github.com/mikedilger/float-cmp
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  hyper 1.11.0
    Source: https://github.com/hyperium/hyper
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  plist 1.10.0
    Source: https://github.com/ebarnard/rust-plist/
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  wayland-backend 0.3.16
    Source: https://github.com/smithay/wayland-rs
    License: MIT
  wayland-client 0.31.15
    Source: https://github.com/smithay/wayland-rs
    License: MIT
  wayland-protocols-wlr 0.3.12
    Source: https://github.com/smithay/wayland-rs
    License: MIT
  wayland-protocols 0.32.13
    Source: https://github.com/smithay/wayland-rs
    License: MIT
  wayland-scanner 0.31.11
    Source: https://github.com/smithay/wayland-rs
    License: MIT
  wayland-sys 0.31.11
    Source: https://github.com/smithay/wayland-rs
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  winreg 0.10.1
    Source: https://github.com/gentoo90/winreg-rs
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  new_debug_unreachable 1.0.6
    Source: https://github.com/mbrubeck/rust-debug-unreachable
    License: MIT
  ordered-float 5.3.0
    Source: https://github.com/reem/rust-ordered-float
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  which 8.0.5
    Source: https://github.com/harryfei/which-rs.git
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  schannel 0.1.29
    Source: https://github.com/steffengy/schannel-rs
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  kqueue-sys 1.1.2
    Source: https://gitlab.com/rust-kqueue/rust-kqueue-sys
    License: MIT
  kqueue 1.2.0
    Source: https://gitlab.com/rust-kqueue/rust-kqueue
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  tokio-tungstenite 0.30.0
    Source: https://github.com/snapview/tokio-tungstenite
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  globwalk 0.9.1
    Source: https://github.com/gilnaa/globwalk
    License: MIT
  memoffset 0.9.1
    Source: https://github.com/Gilnaa/memoffset
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  redox_syscall 0.5.18
    Source: https://gitlab.redox-os.org/redox-os/syscall
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  h2 0.4.15
    Source: https://github.com/hyperium/h2
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  bytes 1.12.1
    Source: https://github.com/tokio-rs/bytes
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  serial_test 3.5.0
    Source: https://github.com/palfrey/serial_test/
    License: MIT
  serial_test_derive 3.5.0
    Source: https://github.com/palfrey/serial_test/
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  want 0.3.1
    Source: https://github.com/seanmonstar/want
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  try-lock 0.2.5
    Source: https://github.com/seanmonstar/try-lock
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  loom 0.7.2
    Source: https://github.com/tokio-rs/loom
    License: MIT
  slab 0.4.12
    Source: https://github.com/tokio-rs/slab
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  assert-json-diff 2.0.2
    Source: https://github.com/davidpdrsn/assert-json-diff.git
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  sharded-slab 0.1.7
    Source: https://github.com/hawkw/sharded-slab
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  matchers 0.2.0
    Source: https://github.com/hawkw/matchers
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  tracing-attributes 0.1.31
    Source: https://github.com/tokio-rs/tracing
    License: MIT
  tracing-core 0.1.36
    Source: https://github.com/tokio-rs/tracing
    License: MIT
  tracing-error 0.2.1
    Source: https://github.com/tokio-rs/tracing
    License: MIT
  tracing-futures 0.2.5
    Source: https://github.com/tokio-rs/tracing
    License: MIT
  tracing-log 0.2.0
    Source: https://github.com/tokio-rs/tracing
    License: MIT
  tracing-subscriber 0.3.23
    Source: https://github.com/tokio-rs/tracing
    License: MIT
  tracing 0.1.44
    Source: https://github.com/tokio-rs/tracing
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  tower-layer 0.3.3
    Source: https://github.com/tower-rs/tower
    License: MIT
  tower-service 0.3.3
    Source: https://github.com/tower-rs/tower
    License: MIT
  tower 0.5.3
    Source: https://github.com/tower-rs/tower
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  axum 0.8.9
    Source: https://github.com/tokio-rs/axum
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  tower-http 0.6.11
    Source: https://github.com/tower-rs/tower-http
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  http-body-util 0.1.4
    Source: https://github.com/hyperium/http-body
    License: MIT
  http-body 1.1.0
    Source: https://github.com/hyperium/http-body
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  hyper-util 0.1.20
    Source: https://github.com/hyperium/hyper-util
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  micromap 0.3.0
    Source: https://github.com/yegor256/micromap
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  ratatui-macros 0.7.2
    Source: https://github.com/ratatui/ratatui
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  zbus 5.18.0
    Source: https://github.com/z-galaxy/zbus/
    License: MIT
  zbus_macros 5.18.0
    Source: https://github.com/z-galaxy/zbus/
    License: MIT
  zbus_names 4.3.4
    Source: https://github.com/z-galaxy/zbus/
    License: MIT
  zvariant 5.13.1
    Source: https://github.com/z-galaxy/zbus/
    License: MIT
  zvariant_derive 5.13.1
    Source: https://github.com/z-galaxy/zbus/
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  rig-core 0.40.0
    Source: https://github.com/0xPlaygrounds/rig
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  termtree 0.5.1
    Source: https://github.com/rust-cli/termtree
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  synstructure 0.13.2
    Source: https://github.com/mystor/synstructure
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  mimalloc 0.1.52
    Source: https://github.com/purpleprotocol/mimalloc_rust
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  fax 0.2.7
    Source: https://github.com/pdf-rs/fax
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  lru 0.18.1
    Source: https://github.com/jeromefroe/lru-rs.git
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  textwrap 0.16.2
    Source: https://github.com/mgeisler/textwrap
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  hostname 0.4.2
    Source: https://github.com/djc/hostname
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  tree_magic_mini 3.2.2
    Source: https://github.com/mbrubeck/tree_magic/
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  fs_extra 1.3.0
    Source: https://github.com/webdesus/fs_extra
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  smawk 0.3.3
    Source: https://github.com/mgeisler/smawk
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  darling 0.23.0
    Source: https://github.com/TedDriggs/darling
    License: MIT
  darling_core 0.23.0
    Source: https://github.com/TedDriggs/darling
    License: MIT
  darling_macro 0.23.0
    Source: https://github.com/TedDriggs/darling
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  syntect 5.3.0
    Source: https://github.com/trishume/syntect
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  built 0.8.1
    Source: https://github.com/lukaslueg/built
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  arg_enum_proc_macro 0.3.4
    Source: https://github.com/lu-zero/arg_enum_proc_macro
    License: MIT
  interpolate_name 0.2.4
    Source: https://github.com/lu-zero/interpolate_name
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  tiff 0.11.3
    Source: https://github.com/image-rs/image-tiff
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  filedescriptor 0.8.3
    Source: https://github.com/wezterm/wezterm
    License: MIT
  portable-pty 0.9.0
    Source: https://github.com/wezterm/wezterm
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  libmimalloc-sys 0.1.49
    Source: https://github.com/purpleprotocol/mimalloc_rust/tree/master/libmimalloc-sys
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  better-panic 0.3.0
    Source: https://github.com/mitsuhiko/better-panic
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  schemars 1.2.2
    Source: https://github.com/GREsau/schemars
    License: MIT
  schemars_derive 1.2.2
    Source: https://github.com/GREsau/schemars
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  rgb 0.8.53
    Source: https://github.com/kornelski/rust-rgb
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  noop_proc_macro 0.3.0
    Source: https://github.com/lu-zero/noop_proc_macro
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  ruzstd 0.8.3
    Source: https://github.com/KillingSpark/zstd-rs
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  av-scenechange 0.14.1
    Source: https://github.com/rust-av/av-scenechange
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  strum 0.28.0
    Source: https://github.com/Peternator7/strum
    License: MIT
  strum_macros 0.28.0
    Source: https://github.com/Peternator7/strum
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  email_address 0.2.9
    Source: https://github.com/johnstonskj/rust-email_address.git
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  tokio-macros 2.7.1
    Source: https://github.com/tokio-rs/tokio
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  axum-core 0.5.6
    Source: https://github.com/tokio-rs/axum
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  owo-colors 4.3.0
    Source: https://github.com/owo-colors/owo-colors
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  cfg_aliases 0.1.1
    Source: https://github.com/katharostech/cfg_aliases
    License: MIT
  cfg_aliases 0.2.2
    Source: https://github.com/katharostech/cfg_aliases
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  jsonschema 0.49.2
    Source: https://github.com/Stranger6667/jsonschema
    License: MIT
  referencing 0.49.2
    Source: https://github.com/Stranger6667/jsonschema
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  alloca 0.4.0
    Source: https://github.com/playXE/alloca-rs
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  maybe-rayon 0.1.1
    Source: https://github.com/shssoichiro/maybe-rayon
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  compact_str 0.10.0
    Source: https://github.com/ParkMyCar/compact_str
    License: MIT
  compact_str 0.9.1
    Source: https://github.com/ParkMyCar/compact_str
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  castaway 0.2.4
    Source: https://github.com/sagebind/castaway
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  pulp 0.22.3
    Source: https://github.com/sarah-quinones/pulp/
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  ansi-to-tui 8.0.1
    Source: https://github.com/ratatui/ansi-to-tui
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  quick_cache 0.7.0
    Source: https://github.com/arthurprs/quick-cache
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  catppuccin 2.8.0
    Source: https://github.com/catppuccin/rust
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  matchit 0.8.4
    Source: https://github.com/ibraheemdev/matchit
    License: MIT AND BSD-3-Clause
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  simdutf 0.7.0
    Source: https://github.com/Nugine/simdutf-rs
    License: MIT
  outref 0.5.2
    Source: https://github.com/Nugine/outref
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  aligned-vec 0.6.4
    Source: https://github.com/sarah-ek/aligned-vec/
    License: MIT
  reborrow 0.5.5
    Source: https://github.com/sarah-ek/reborrow/
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  teletypewriter 0.5.3
    Source: https://github.com/raphamorim/rio
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  libredox 0.1.18
    Source: https://gitlab.redox-os.org/redox-os/libredox.git
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  equator-macro 0.4.2
    Source: https://github.com/sarah-ek/equator/
    License: MIT
  equator 0.4.2
    Source: https://github.com/sarah-ek/equator/
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  tui-widget-list 0.15.3
    Source: https://github.com/preiter93/tui-widget-list
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  fluent-uri 0.4.1
    Source: https://github.com/yescallop/fluent-uri-rs
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  json5 1.3.1
    Source: https://github.com/callum-oakley/json5-rs
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  tui-shimmer 0.1.3
    Source: https://github.com/vinhnx/tui-shimmer
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  convert_case 0.10.0
    Source: https://github.com/rutrum/convert-case
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  async-stream-impl 0.3.6
    Source: https://github.com/tokio-rs/async-stream
    License: MIT
  async-stream 0.3.6
    Source: https://github.com/tokio-rs/async-stream
    License: MIT
  block2 0.6.2
    Source: https://github.com/madsmtm/objc2
    License: MIT
  corcovado 0.5.3
    Source: https://github.com/raphamorim/rio
    License: MIT
  difflib 0.4.0
    Source: https://github.com/DimaKudosh/difflib
    License: MIT
  include_dir 0.7.4
    Source: https://github.com/Michael-F-Bryan/include_dir
    License: MIT
  include_dir_macros 0.7.4
    Source: https://github.com/Michael-F-Bryan/include_dir
    License: MIT
  jsonschema-regex 0.49.2
    Source: https://github.com/Stranger6667/jsonschema
    License: MIT
  jsonschema-value 0.49.2
    Source: https://github.com/Stranger6667/jsonschema
    License: MIT
  libm 0.2.16
    Source: https://github.com/rust-lang/compiler-builtins
    License: MIT
  objc2-encode 4.1.0
    Source: https://github.com/madsmtm/objc2
    License: MIT
  objc2-foundation 0.3.2
    Source: https://github.com/madsmtm/objc2
    License: MIT
  objc2 0.6.4
    Source: https://github.com/madsmtm/objc2
    License: MIT
  plotters-backend 0.3.7
    Source: https://github.com/plotters-rs/plotters
    License: MIT
  plotters-svg 0.3.7
    Source: https://github.com/plotters-rs/plotters.git
    License: MIT
  plotters 0.3.7
    Source: https://github.com/plotters-rs/plotters
    License: MIT
  pulp-wasm-simd-flag 0.1.1
    Source: https://github.com/sarah-quinones/pulp/
    License: MIT
  ratatui-cheese 0.7.0
    Source: https://github.com/shashanktomar/ratatui-cheese
    License: MIT
  rio-graphics 0.5.3
    Source: https://github.com/raphamorim/rio
    License: MIT
  rio-vt 0.5.3
    Source: https://github.com/raphamorim/rio
    License: MIT
  simd_helpers 0.1.0
    Source: https://github.com/lu-zero/simd_helpers
    License: MIT
  tree-sitter-cpp 0.23.4
    Source: https://github.com/tree-sitter/tree-sitter-cpp
    License: MIT
  tree-sitter-java 0.23.5
    Source: https://github.com/tree-sitter/tree-sitter-java
    License: MIT
  tree-sitter-typescript 0.23.2
    Source: https://github.com/tree-sitter/tree-sitter-typescript
    License: MIT
  uuid-simd 0.8.0
    Source: https://github.com/Nugine/simd
    License: MIT
  vsimd 0.8.0
    Source: https://github.com/Nugine/simd
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  tokio-stream 0.1.19
    Source: https://github.com/tokio-rs/tokio
    License: MIT
  tokio-util 0.7.19
    Source: https://github.com/tokio-rs/tokio
    License: MIT
  tokio 1.53.1
    Source: https://github.com/tokio-rs/tokio
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  simd-adler32 0.3.10
    Source: https://github.com/mcountryman/simd-adler32
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  rio-grapheme-width 0.5.3
    Source: https://github.com/raphamorim/rio
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  crossterm 0.29.0
    Source: https://github.com/crossterm-rs/crossterm
    License: MIT
  crossterm_winapi 0.9.1
    Source: https://github.com/crossterm-rs/crossterm-winapi
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  endi 1.1.1
    Source: https://github.com/zeenix/endi
    License: MIT
  zmij 1.0.23
    Source: https://github.com/dtolnay/zmij
    License: MIT
  zvariant_utils 3.5.0
    Source: https://github.com/z-galaxy/zbus/
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  winnow 1.0.4
    Source: https://github.com/winnow-rs/winnow
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  pulldown-cmark-escape 0.11.0
    Source: https://github.com/raphlinus/pulldown-cmark
    License: MIT
  pulldown-cmark 0.13.4
    Source: https://github.com/raphlinus/pulldown-cmark
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  fancy-regex 0.13.0
    Source: https://github.com/fancy-regex/fancy-regex
    License: MIT
  fancy-regex 0.16.2
    Source: https://github.com/fancy-regex/fancy-regex
    License: MIT
  fancy-regex 0.18.0
    Source: https://github.com/fancy-regex/fancy-regex
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  zip 8.6.0
    Source: https://github.com/zip-rs/zip2
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  tree-sitter-c 0.24.2
    Source: https://github.com/tree-sitter/tree-sitter-c
    License: MIT
  tree-sitter-go 0.25.0
    Source: https://github.com/tree-sitter/tree-sitter-go
    License: MIT
  tree-sitter-javascript 0.25.0
    Source: https://github.com/tree-sitter/tree-sitter-javascript
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  phf 0.13.1
    Source: https://github.com/rust-phf/rust-phf
    License: MIT
  phf_shared 0.13.1
    Source: https://github.com/rust-phf/rust-phf
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  aho-corasick 1.1.4
    Source: https://github.com/BurntSushi/aho-corasick
    License: Unlicense OR MIT
  byteorder-lite 0.1.0
    Source: https://github.com/image-rs/byteorder-lite
    License: Unlicense OR MIT
  byteorder 1.5.0
    Source: https://github.com/BurntSushi/byteorder
    License: Unlicense OR MIT
  globset 0.4.19
    Source: https://github.com/BurntSushi/ripgrep/tree/master/crates/globset
    License: Unlicense OR MIT
  ignore 0.4.31
    Source: https://github.com/BurntSushi/ripgrep/tree/master/crates/ignore
    License: Unlicense OR MIT
  memchr 2.8.3
    Source: https://github.com/BurntSushi/memchr
    License: Unlicense OR MIT
  walkdir 2.5.0
    Source: https://github.com/BurntSushi/walkdir
    License: Unlicense OR MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  nix 0.28.0
    Source: https://github.com/nix-rust/nix
    License: MIT
  nix 0.31.3
    Source: https://github.com/nix-rust/nix
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  strsim 0.11.1
    Source: https://github.com/rapidfuzz/strsim-rs
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  raw-cpuid 11.6.0
    Source: https://github.com/gz/rust-cpuid
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  sysinfo 0.38.4
    Source: https://github.com/GuillaumeGomez/sysinfo
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  twox-hash 2.1.3
    Source: https://github.com/shepmaster/twox-hash
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  combine 4.6.7
    Source: https://github.com/Marwes/combine
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  fsevent-sys 4.1.0
    Source: https://github.com/octplane/fsevent-rust/tree/master/fsevent-sys
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  y4m 0.8.0
    Source: https://github.com/image-rs/y4m.git
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  data-encoding 2.11.0
    Source: https://github.com/ia0/data-encoding
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  aws-lc-sys 0.43.0
    Source: https://github.com/aws/aws-lc-rs
    License: ISC AND (Apache-2.0 OR ISC) AND Apache-2.0 AND MIT AND BSD-3-Clause AND (Apache-2.0 OR ISC OR MIT) AND (Apache-2.0 OR ISC OR MIT-0)
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  derive_more-impl 2.1.1
    Source: https://github.com/JelteF/derive_more
    License: MIT
  derive_more 2.1.1
    Source: https://github.com/JelteF/derive_more
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  tree-sitter-python 0.25.0
    Source: https://github.com/tree-sitter/tree-sitter-python
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  color_quant 1.1.0
    Source: https://github.com/image-rs/color_quant.git
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  ratatui-core 0.1.2
    Source: https://github.com/ratatui/ratatui
    License: MIT
  ratatui-crossterm 0.1.2
    Source: https://github.com/ratatui/ratatui
    License: MIT
  ratatui-widgets 0.3.2
    Source: https://github.com/ratatui/ratatui
    License: MIT
  ratatui 0.30.2
    Source: https://github.com/ratatui/ratatui
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  same-file 1.0.6
    Source: https://github.com/BurntSushi/same-file
    License: Unlicense OR MIT
  winapi-util 0.1.11
    Source: https://github.com/BurntSushi/winapi-util
    License: Unlicense OR MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  console 0.15.11
    Source: https://github.com/console-rs/console
    License: MIT
  console 0.16.4
    Source: https://github.com/console-rs/console
    License: MIT
  dialoguer 0.12.0
    Source: https://github.com/console-rs/dialoguer
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  redox_users 0.5.2
    Source: https://gitlab.redox-os.org/redox-os/users
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  tree-sitter-bash 0.25.1
    Source: https://github.com/tree-sitter/tree-sitter-bash
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  tree-sitter-rust 0.24.2
    Source: https://github.com/tree-sitter/tree-sitter-rust
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  tree-sitter-language 0.1.7
    Source: https://github.com/tree-sitter/tree-sitter
    License: MIT
  tree-sitter 0.26.11
    Source: https://github.com/tree-sitter/tree-sitter
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  oorandom 11.1.5
    Source: https://hg.sr.ht/~icefox/oorandom
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  crunchy 0.2.4
    Source: https://github.com/eira-fransham/crunchy
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  os_pipe 1.2.3
    Source: https://github.com/oconnor663/os_pipe.rs
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  nu-ansi-term 0.50.3
    Source: https://github.com/nushell/nu-ansi-term
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  bincode 1.3.3
    Source: https://github.com/servo/bincode
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  mime_guess 2.0.5
    Source: https://github.com/abonander/mime_guess
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  generic-array 0.14.7
    Source: https://github.com/fizyk20/generic-array.git
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  quick-xml 0.41.0
    Source: https://github.com/tafia/quick-xml
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  ratatui-textarea 0.9.2
    Source: https://github.com/ratatui/ratatui-textarea
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  urlencoding 2.1.3
    Source: https://github.com/kornelski/rust_urlencoding
    License: MIT
--------------------------------------------------------------------------------
MIT License — SPDX: MIT
--------------------------------------------------------------------------------
  loop9 0.1.5
    Source: https://gitlab.com/kornelski/loop9.git
    License: MIT
--------------------------------------------------------------------------------
MIT No Attribution — SPDX: MIT-0
--------------------------------------------------------------------------------
  borrow-or-share 0.2.4
    Source: https://github.com/yescallop/borrow-or-share
    License: MIT-0
--------------------------------------------------------------------------------
Mozilla Public License 2.0 — SPDX: MPL-2.0
--------------------------------------------------------------------------------
  nucleo-matcher 0.3.1
    Source: https://github.com/helix-editor/nucleo
    License: MPL-2.0
--------------------------------------------------------------------------------
Mozilla Public License 2.0 — SPDX: MPL-2.0
--------------------------------------------------------------------------------
  option-ext 0.2.0
    Source: https://github.com/soc/option-ext.git
    License: MPL-2.0
--------------------------------------------------------------------------------
University of Illinois/NCSA Open Source License — SPDX: NCSA
--------------------------------------------------------------------------------
  libfuzzer-sys 0.4.13
    Source: https://github.com/rust-fuzz/libfuzzer
    License: (MIT OR Apache-2.0) AND NCSA
--------------------------------------------------------------------------------
Unicode License v3 — SPDX: Unicode-3.0
--------------------------------------------------------------------------------
  unicode-ident 1.0.24
    Source: https://github.com/dtolnay/unicode-ident
    License: (MIT OR Apache-2.0) AND Unicode-3.0
--------------------------------------------------------------------------------
Unicode License v3 — SPDX: Unicode-3.0
--------------------------------------------------------------------------------
  icu_collections 2.2.0
    Source: https://github.com/unicode-org/icu4x
    License: Unicode-3.0
  icu_locale_core 2.2.0
    Source: https://github.com/unicode-org/icu4x
    License: Unicode-3.0
  icu_normalizer 2.2.0
    Source: https://github.com/unicode-org/icu4x
    License: Unicode-3.0
  icu_normalizer_data 2.2.0
    Source: https://github.com/unicode-org/icu4x
    License: Unicode-3.0
  icu_properties 2.2.0
    Source: https://github.com/unicode-org/icu4x
    License: Unicode-3.0
  icu_properties_data 2.2.0
    Source: https://github.com/unicode-org/icu4x
    License: Unicode-3.0
  icu_provider 2.2.0
    Source: https://github.com/unicode-org/icu4x
    License: Unicode-3.0
  litemap 0.8.2
    Source: https://github.com/unicode-org/icu4x
    License: Unicode-3.0
  potential_utf 0.1.5
    Source: https://github.com/unicode-org/icu4x
    License: Unicode-3.0
  tinystr 0.8.3
    Source: https://github.com/unicode-org/icu4x
    License: Unicode-3.0
  writeable 0.6.3
    Source: https://github.com/unicode-org/icu4x
    License: Unicode-3.0
  yoke-derive 0.8.2
    Source: https://github.com/unicode-org/icu4x
    License: Unicode-3.0
  yoke 0.8.3
    Source: https://github.com/unicode-org/icu4x
    License: Unicode-3.0
  zerofrom-derive 0.1.7
    Source: https://github.com/unicode-org/icu4x
    License: Unicode-3.0
  zerofrom 0.1.8
    Source: https://github.com/unicode-org/icu4x
    License: Unicode-3.0
  zerotrie 0.2.4
    Source: https://github.com/unicode-org/icu4x
    License: Unicode-3.0
  zerovec-derive 0.11.3
    Source: https://github.com/unicode-org/icu4x
    License: Unicode-3.0
  zerovec 0.11.6
    Source: https://github.com/unicode-org/icu4x
    License: Unicode-3.0
--------------------------------------------------------------------------------
zlib License — SPDX: Zlib
--------------------------------------------------------------------------------
  zlib-rs 0.6.6
    Source: https://github.com/trifectatechfoundation/zlib-rs
    License: Zlib
--------------------------------------------------------------------------------
zlib License — SPDX: Zlib
--------------------------------------------------------------------------------
  foldhash 0.1.5
    Source: https://github.com/orlp/foldhash
    License: Zlib
  foldhash 0.2.0
    Source: https://github.com/orlp/foldhash
    License: Zlib

================================================================================
PART II — LICENSE TEXTS
================================================================================

Full license texts for the licenses referenced above are available at:
  https://spdx.org/licenses/

Key licenses used in this project:
  - Apache-2.0: http://www.apache.org/licenses/LICENSE-2.0
  - MIT: https://opensource.org/licenses/MIT
  - BSD-3-Clause: https://opensource.org/licenses/BSD-3-Clause
  - BSD-2-Clause: https://opensource.org/licenses/BSD-2-Clause
  - ISC: https://opensource.org/licenses/ISC