vtcode 0.136.4

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
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
================================================================================

--------------------------------------------------------------------------------
Apache-2.0 OR MIT (495 crates)
--------------------------------------------------------------------------------
  addr2line 0.25.1
    Source: https://github.com/gimli-rs/addr2line
    License: Apache-2.0 OR MIT
  aes 0.8.4
    Source: https://github.com/RustCrypto/block-ciphers
    License: Apache-2.0 OR MIT
  ahash 0.8.12
    Source: https://github.com/tkaitchuck/ahash
    License: Apache-2.0 OR MIT
  aligned 0.4.3
    Source: https://github.com/rust-embedded-community/aligned
    License: Apache-2.0 OR MIT
  allocator-api2 0.2.21
    Source: https://github.com/zakarumych/allocator-api2
    License: Apache-2.0 OR MIT
  android_system_properties 0.1.5
    Source: https://github.com/nical/android_system_properties
    License: Apache-2.0 OR MIT
  anes 0.1.6
    Source: https://github.com/zrzka/anes-rs
    License: Apache-2.0 OR MIT
  annotate-snippets 0.12.16
    Source: https://github.com/rust-lang/annotate-snippets-rs
    License: Apache-2.0 OR MIT
  anstream 1.0.0
    Source: https://github.com/rust-cli/anstyle.git
    License: Apache-2.0 OR MIT
  anstyle 1.0.14
    Source: https://github.com/rust-cli/anstyle.git
    License: Apache-2.0 OR MIT
  anstyle-git 1.1.5
    Source: https://github.com/rust-cli/anstyle.git
    License: Apache-2.0 OR MIT
  anstyle-ls 1.0.6
    Source: https://github.com/rust-cli/anstyle.git
    License: Apache-2.0 OR MIT
  anstyle-parse 1.0.0
    Source: https://github.com/rust-cli/anstyle.git
    License: Apache-2.0 OR MIT
  anstyle-query 1.1.5
    Source: https://github.com/rust-cli/anstyle.git
    License: Apache-2.0 OR MIT
  anstyle-wincon 3.0.11
    Source: https://github.com/rust-cli/anstyle.git
    License: Apache-2.0 OR MIT
  anyhow 1.0.103
    Source: https://github.com/dtolnay/anyhow
    License: Apache-2.0 OR MIT
  apple-native-keyring-store 1.0.0
    Source: https://github.com/open-source-cooperative/apple-native-keyring-store.git
    License: Apache-2.0 OR MIT
  arbitrary 1.4.2
    Source: https://github.com/rust-fuzz/arbitrary/
    License: Apache-2.0 OR MIT
  arboard 3.6.1
    Source: https://github.com/1Password/arboard
    License: Apache-2.0 OR MIT
  arc-swap 1.9.2
    Source: https://github.com/vorner/arc-swap
    License: Apache-2.0 OR MIT
  arraydeque 0.5.1
    Source: https://github.com/andylokandy/arraydeque
    License: Apache-2.0 OR MIT
  arrayvec 0.7.7
    Source: https://github.com/bluss/arrayvec
    License: Apache-2.0 OR MIT
  as-any 0.3.2
    Source: https://codeberg.org/fogti/as-any
    License: Apache-2.0 OR MIT
  as-slice 0.2.1
    Source: https://github.com/japaric/as-slice
    License: Apache-2.0 OR MIT
  assert_cmd 2.2.2
    Source: https://github.com/assert-rs/assert_cmd.git
    License: Apache-2.0 OR MIT
  assert_fs 1.1.4
    Source: https://github.com/assert-rs/assert_fs.git
    License: Apache-2.0 OR MIT
  async-broadcast 0.7.2
    Source: https://github.com/smol-rs/async-broadcast
    License: Apache-2.0 OR MIT
  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-recursion 1.1.1
    Source: https://github.com/dcchut/async-recursion
    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
  async-trait 0.1.89
    Source: https://github.com/dtolnay/async-trait
    License: Apache-2.0 OR MIT
  atomic 0.6.1
    Source: https://github.com/Amanieu/atomic-rs
    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: Apache-2.0 OR MIT
  base64 0.22.1
    Source: https://github.com/marshallpierce/rust-base64
    License: Apache-2.0 OR MIT
  base64ct 1.8.3
    Source: https://github.com/RustCrypto/formats
    License: Apache-2.0 OR MIT
  bit-set 0.5.3
    Source: https://github.com/contain-rs/bit-set
    License: Apache-2.0 OR MIT
  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: Apache-2.0 OR MIT
  bit-vec 0.8.0
    Source: https://github.com/contain-rs/bit-vec
    License: Apache-2.0 OR MIT
  bit_field 0.10.3
    Source: https://github.com/phil-opp/rust-bit-field
    License: Apache-2.0 OR MIT
  bitflags 1.3.2
    Source: https://github.com/bitflags/bitflags
    License: Apache-2.0 OR MIT
  bitflags 2.13.0
    Source: https://github.com/bitflags/bitflags
    License: Apache-2.0 OR MIT
  bitstream-io 4.10.0
    Source: https://github.com/tuffy/bitstream-io
    License: Apache-2.0 OR MIT
  block-buffer 0.10.4
    Source: https://github.com/RustCrypto/utils
    License: Apache-2.0 OR MIT
  block-buffer 0.12.1
    Source: https://github.com/RustCrypto/utils
    License: Apache-2.0 OR MIT
  block-padding 0.3.3
    Source: https://github.com/RustCrypto/utils
    License: Apache-2.0 OR MIT
  blocking 1.6.2
    Source: https://github.com/smol-rs/blocking
    License: Apache-2.0 OR MIT
  bs58 0.5.1
    Source: https://github.com/Nullus157/bs58-rs
    License: Apache-2.0 OR MIT
  bstr 1.12.3
    Source: https://github.com/BurntSushi/bstr
    License: Apache-2.0 OR MIT
  bumpalo 3.20.3
    Source: https://github.com/fitzgen/bumpalo
    License: Apache-2.0 OR MIT
  by_address 1.2.1
    Source: https://github.com/mbrubeck/by_address
    License: Apache-2.0 OR MIT
  bytecount 0.6.9
    Source: https://github.com/llogiq/bytecount
    License: Apache-2.0 OR MIT
  cast 0.3.0
    Source: https://github.com/japaric/cast.rs
    License: Apache-2.0 OR MIT
  cbc 0.1.2
    Source: https://github.com/RustCrypto/block-modes
    License: Apache-2.0 OR MIT
  cc 1.2.65
    Source: https://github.com/rust-lang/cc-rs
    License: Apache-2.0 OR MIT
  cfg-if 1.0.4
    Source: https://github.com/rust-lang/cfg-if
    License: Apache-2.0 OR MIT
  chacha20 0.10.1
    Source: https://github.com/RustCrypto/stream-ciphers
    License: Apache-2.0 OR MIT
  chrono 0.4.45
    Source: https://github.com/chronotope/chrono
    License: Apache-2.0 OR MIT
  cipher 0.4.4
    Source: https://github.com/RustCrypto/traits
    License: Apache-2.0 OR MIT
  clap 4.6.1
    Source: https://github.com/clap-rs/clap
    License: Apache-2.0 OR MIT
  clap_builder 4.6.0
    Source: https://github.com/clap-rs/clap
    License: Apache-2.0 OR MIT
  clap_derive 4.6.1
    Source: https://github.com/clap-rs/clap
    License: Apache-2.0 OR MIT
  clap_lex 1.1.0
    Source: https://github.com/clap-rs/clap
    License: Apache-2.0 OR MIT
  cmake 0.1.58
    Source: https://github.com/rust-lang/cmake-rs
    License: Apache-2.0 OR MIT
  color-eyre 0.6.5
    Source: https://github.com/eyre-rs/eyre
    License: Apache-2.0 OR MIT
  color-spantrace 0.3.0
    Source: https://github.com/eyre-rs/eyre
    License: Apache-2.0 OR MIT
  colorchoice 1.0.5
    Source: https://github.com/rust-cli/anstyle.git
    License: Apache-2.0 OR MIT
  colorchoice-clap 1.0.8
    Source: https://github.com/rust-cli/anstyle.git
    License: Apache-2.0 OR MIT
  concurrent-queue 2.5.0
    Source: https://github.com/smol-rs/concurrent-queue
    License: Apache-2.0 OR MIT
  const-oid 0.9.6
    Source: https://github.com/RustCrypto/formats/tree/master/const-oid
    License: Apache-2.0 OR MIT
  const-oid 0.10.2
    Source: https://github.com/RustCrypto/formats
    License: Apache-2.0 OR MIT
  cookie 0.18.1
    Source: https://github.com/SergioBenitez/cookie-rs
    License: Apache-2.0 OR MIT
  cookie_store 0.22.1
    Source: https://github.com/pfernie/cookie_store
    License: Apache-2.0 OR MIT
  core-foundation 0.9.4
    Source: https://github.com/servo/core-foundation-rs
    License: Apache-2.0 OR MIT
  core-foundation 0.10.1
    Source: https://github.com/servo/core-foundation-rs
    License: Apache-2.0 OR MIT
  core-foundation-sys 0.8.7
    Source: https://github.com/servo/core-foundation-rs
    License: Apache-2.0 OR MIT
  cpufeatures 0.2.17
    Source: https://github.com/RustCrypto/utils
    License: Apache-2.0 OR MIT
  cpufeatures 0.3.0
    Source: https://github.com/RustCrypto/utils
    License: Apache-2.0 OR MIT
  crc32fast 1.5.0
    Source: https://github.com/srijs/rust-crc32fast
    License: Apache-2.0 OR MIT
  criterion 0.8.2
    Source: https://github.com/criterion-rs/criterion.rs
    License: Apache-2.0 OR MIT
  criterion-plot 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: Apache-2.0 OR MIT
  crossbeam-deque 0.8.6
    Source: https://github.com/crossbeam-rs/crossbeam
    License: Apache-2.0 OR MIT
  crossbeam-epoch 0.9.18
    Source: https://github.com/crossbeam-rs/crossbeam
    License: Apache-2.0 OR MIT
  crossbeam-utils 0.8.21
    Source: https://github.com/crossbeam-rs/crossbeam
    License: Apache-2.0 OR MIT
  crypto-common 0.1.7
    Source: https://github.com/RustCrypto/traits
    License: Apache-2.0 OR MIT
  crypto-common 0.2.2
    Source: https://github.com/RustCrypto/traits
    License: Apache-2.0 OR MIT
  csscolorparser 0.6.2
    Source: https://github.com/mazznoer/csscolorparser-rs
    License: Apache-2.0 OR MIT
  curve25519-dalek-derive 0.1.1
    Source: https://github.com/dalek-cryptography/curve25519-dalek
    License: Apache-2.0 OR MIT
  dbus 0.9.11
    Source: https://github.com/diwic/dbus-rs
    License: Apache-2.0 OR MIT
  dbus-secret-service 4.1.0
    Source: https://github.com/brotskydotcom/dbus-secret-service.git
    License: Apache-2.0 OR MIT
  dbus-secret-service-keyring-store 1.0.0
    Source: https://github.com/open-source-cooperative/dbus-secret-service-keyring-store.git
    License: Apache-2.0 OR MIT
  deadpool 0.12.3
    Source: https://github.com/bikeshedder/deadpool
    License: Apache-2.0 OR MIT
  deadpool-runtime 0.1.4
    Source: https://github.com/bikeshedder/deadpool
    License: Apache-2.0 OR MIT
  der 0.7.10
    Source: https://github.com/RustCrypto/formats/tree/master/der
    License: Apache-2.0 OR MIT
  deranged 0.5.8
    Source: https://github.com/jhpratt/deranged
    License: Apache-2.0 OR MIT
  diff 0.1.13
    Source: https://github.com/utkarshkukreti/diff.rs
    License: Apache-2.0 OR MIT
  digest 0.10.7
    Source: https://github.com/RustCrypto/traits
    License: Apache-2.0 OR MIT
  digest 0.11.3
    Source: https://github.com/RustCrypto/traits
    License: Apache-2.0 OR MIT
  directories 6.0.0
    Source: https://github.com/soc/directories-rs
    License: Apache-2.0 OR MIT
  dirs 6.0.0
    Source: https://github.com/soc/dirs-rs
    License: Apache-2.0 OR MIT
  dirs-sys 0.5.0
    Source: https://github.com/dirs-dev/dirs-sys-rs
    License: Apache-2.0 OR MIT
  displaydoc 0.2.6
    Source: https://github.com/yaahc/displaydoc
    License: Apache-2.0 OR MIT
  document-features 0.2.12
    Source: https://github.com/slint-ui/document-features
    License: Apache-2.0 OR MIT
  downcast-rs 1.2.1
    Source: https://github.com/marcianx/downcast-rs
    License: Apache-2.0 OR MIT
  dyn-clone 1.0.20
    Source: https://github.com/dtolnay/dyn-clone
    License: Apache-2.0 OR MIT
  ed25519 2.2.3
    Source: https://github.com/RustCrypto/signatures/tree/master/ed25519
    License: Apache-2.0 OR MIT
  either 1.16.0
    Source: https://github.com/rayon-rs/either
    License: Apache-2.0 OR MIT
  encode_unicode 1.0.0
    Source: https://github.com/tormol/encode_unicode
    License: Apache-2.0 OR MIT
  encoding_rs_io 0.1.7
    Source: https://github.com/BurntSushi/encoding_rs_io
    License: Apache-2.0 OR MIT
  enumflags2 0.7.12
    Source: https://github.com/meithecatte/enumflags2
    License: Apache-2.0 OR MIT
  enumflags2_derive 0.7.12
    Source: https://github.com/meithecatte/enumflags2
    License: Apache-2.0 OR MIT
  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: Apache-2.0 OR MIT
  euclid 0.22.14
    Source: https://github.com/servo/euclid
    License: Apache-2.0 OR MIT
  event-listener 5.4.1
    Source: https://github.com/smol-rs/event-listener
    License: Apache-2.0 OR MIT
  event-listener-strategy 0.5.4
    Source: https://github.com/smol-rs/event-listener-strategy
    License: Apache-2.0 OR MIT
  eventsource-stream 0.2.3
    Source: https://github.com/jpopesculian/eventsource-stream
    License: Apache-2.0 OR MIT
  eyre 0.6.12
    Source: https://github.com/eyre-rs/eyre
    License: Apache-2.0 OR MIT
  fallible-iterator 0.3.0
    Source: https://github.com/sfackler/rust-fallible-iterator
    License: Apache-2.0 OR MIT
  fallible-streaming-iterator 0.1.9
    Source: https://github.com/sfackler/fallible-streaming-iterator
    License: Apache-2.0 OR MIT
  fastrand 2.4.1
    Source: https://github.com/smol-rs/fastrand
    License: Apache-2.0 OR MIT
  fdeflate 0.3.7
    Source: https://github.com/image-rs/fdeflate
    License: Apache-2.0 OR MIT
  filetime 0.2.29
    Source: https://github.com/alexcrichton/filetime
    License: Apache-2.0 OR MIT
  find-msvc-tools 0.1.9
    Source: https://github.com/rust-lang/cc-rs
    License: Apache-2.0 OR MIT
  fixedbitset 0.4.2
    Source: https://github.com/petgraph/fixedbitset
    License: Apache-2.0 OR MIT
  fixedbitset 0.5.7
    Source: https://github.com/petgraph/fixedbitset
    License: Apache-2.0 OR MIT
  flate2 1.1.9
    Source: https://github.com/rust-lang/flate2-rs
    License: Apache-2.0 OR MIT
  fnv 1.0.7
    Source: https://github.com/servo/rust-fnv
    License: Apache-2.0 OR MIT
  foreign-types 0.3.2
    Source: https://github.com/sfackler/foreign-types
    License: Apache-2.0 OR MIT
  foreign-types-shared 0.1.1
    Source: https://github.com/sfackler/foreign-types
    License: Apache-2.0 OR MIT
  form_urlencoded 1.2.2
    Source: https://github.com/servo/rust-url
    License: Apache-2.0 OR MIT
  fraction 0.15.4
    Source: https://github.com/dnsl48/fraction.git
    License: Apache-2.0 OR MIT
  fs2 0.4.3
    Source: https://github.com/danburkert/fs2-rs
    License: Apache-2.0 OR MIT
  futures 0.3.32
    Source: https://github.com/rust-lang/futures-rs
    License: Apache-2.0 OR MIT
  futures-channel 0.3.32
    Source: https://github.com/rust-lang/futures-rs
    License: Apache-2.0 OR MIT
  futures-concurrency 7.7.1
    Source: https://github.com/yoshuawuyts/futures-concurrency
    License: Apache-2.0 OR MIT
  futures-core 0.3.32
    Source: https://github.com/rust-lang/futures-rs
    License: Apache-2.0 OR MIT
  futures-executor 0.3.32
    Source: https://github.com/rust-lang/futures-rs
    License: Apache-2.0 OR MIT
  futures-io 0.3.32
    Source: https://github.com/rust-lang/futures-rs
    License: Apache-2.0 OR MIT
  futures-lite 2.6.1
    Source: https://github.com/smol-rs/futures-lite
    License: Apache-2.0 OR MIT
  futures-macro 0.3.32
    Source: https://github.com/rust-lang/futures-rs
    License: Apache-2.0 OR MIT
  futures-sink 0.3.32
    Source: https://github.com/rust-lang/futures-rs
    License: Apache-2.0 OR MIT
  futures-task 0.3.32
    Source: https://github.com/rust-lang/futures-rs
    License: Apache-2.0 OR MIT
  futures-timer 3.0.4
    Source: https://github.com/async-rs/futures-timer
    License: Apache-2.0 OR MIT
  futures-util 0.3.32
    Source: https://github.com/rust-lang/futures-rs
    License: Apache-2.0 OR MIT
  generator 0.8.9
    Source: https://github.com/Xudong-Huang/generator-rs.git
    License: Apache-2.0 OR MIT
  getrandom 0.2.17
    Source: https://github.com/rust-random/getrandom
    License: Apache-2.0 OR MIT
  getrandom 0.3.4
    Source: https://github.com/rust-random/getrandom
    License: Apache-2.0 OR MIT
  getrandom 0.4.3
    Source: https://github.com/rust-random/getrandom
    License: Apache-2.0 OR MIT
  gif 0.14.2
    Source: https://github.com/image-rs/image-gif
    License: Apache-2.0 OR MIT
  gimli 0.32.3
    Source: https://github.com/gimli-rs/gimli
    License: Apache-2.0 OR MIT
  glob 0.3.3
    Source: https://github.com/rust-lang/glob
    License: Apache-2.0 OR MIT
  gloo-timers 0.4.0
    Source: https://github.com/rustwasm/gloo/tree/master/crates/timers
    License: Apache-2.0 OR MIT
  granit-parser 0.0.6
    Source: https://github.com/bourumir-wyngs/granit-parser
    License: Apache-2.0 OR MIT
  half 2.7.1
    Source: https://github.com/VoidStarKat/half-rs
    License: Apache-2.0 OR MIT
  hashbrown 0.12.3
    Source: https://github.com/rust-lang/hashbrown
    License: Apache-2.0 OR MIT
  hashbrown 0.15.5
    Source: https://github.com/rust-lang/hashbrown
    License: Apache-2.0 OR MIT
  hashbrown 0.16.1
    Source: https://github.com/rust-lang/hashbrown
    License: Apache-2.0 OR MIT
  hashbrown 0.17.1
    Source: https://github.com/rust-lang/hashbrown
    License: Apache-2.0 OR MIT
  hashlink 0.10.0
    Source: https://github.com/kyren/hashlink
    License: Apache-2.0 OR MIT
  heck 0.5.0
    Source: https://github.com/withoutboats/heck
    License: Apache-2.0 OR MIT
  hermit-abi 0.5.2
    Source: https://github.com/hermit-os/hermit-rs
    License: Apache-2.0 OR MIT
  hex 0.4.3
    Source: https://github.com/KokaKiwi/rust-hex
    License: Apache-2.0 OR MIT
  hkdf 0.12.4
    Source: https://github.com/RustCrypto/KDFs/
    License: Apache-2.0 OR MIT
  hmac 0.12.1
    Source: https://github.com/RustCrypto/MACs
    License: Apache-2.0 OR MIT
  http 1.4.2
    Source: https://github.com/hyperium/http
    License: Apache-2.0 OR MIT
  httparse 1.10.1
    Source: https://github.com/seanmonstar/httparse
    License: Apache-2.0 OR MIT
  httpdate 1.0.3
    Source: https://github.com/pyfisch/httpdate
    License: Apache-2.0 OR MIT
  human-panic 2.0.8
    Source: https://github.com/rust-cli/human-panic
    License: Apache-2.0 OR MIT
  humantime 2.3.0
    Source: https://github.com/chronotope/humantime
    License: Apache-2.0 OR MIT
  hybrid-array 0.4.13
    Source: https://github.com/RustCrypto/hybrid-array
    License: Apache-2.0 OR MIT
  iana-time-zone 0.1.65
    Source: https://github.com/strawlab/iana-time-zone
    License: Apache-2.0 OR MIT
  iana-time-zone-haiku 0.1.2
    Source: https://github.com/strawlab/iana-time-zone
    License: Apache-2.0 OR MIT
  ident_case 1.0.1
    Source: https://github.com/TedDriggs/ident_case
    License: Apache-2.0 OR MIT
  idna 1.1.0
    Source: https://github.com/servo/rust-url/
    License: Apache-2.0 OR MIT
  idna_adapter 1.2.2
    Source: https://github.com/hsivonen/idna_adapter
    License: Apache-2.0 OR MIT
  image 0.25.10
    Source: https://github.com/image-rs/image
    License: Apache-2.0 OR MIT
  image-webp 0.2.4
    Source: https://github.com/image-rs/image-webp
    License: Apache-2.0 OR MIT
  indenter 0.3.4
    Source: https://github.com/yaahc/indenter
    License: Apache-2.0 OR MIT
  indexmap 1.9.3
    Source: https://github.com/bluss/indexmap
    License: Apache-2.0 OR MIT
  indexmap 2.14.0
    Source: https://github.com/indexmap-rs/indexmap
    License: Apache-2.0 OR MIT
  indoc 2.0.7
    Source: https://github.com/dtolnay/indoc
    License: Apache-2.0 OR MIT
  inout 0.1.4
    Source: https://github.com/RustCrypto/utils
    License: Apache-2.0 OR MIT
  ipnet 2.12.0
    Source: https://github.com/krisprice/ipnet
    License: Apache-2.0 OR MIT
  is_terminal_polyfill 1.70.2
    Source: https://github.com/polyfill-rs/is_terminal_polyfill
    License: Apache-2.0 OR MIT
  itertools 0.13.0
    Source: https://github.com/rust-itertools/itertools
    License: Apache-2.0 OR MIT
  itertools 0.14.0
    Source: https://github.com/rust-itertools/itertools
    License: Apache-2.0 OR MIT
  itertools 0.15.0
    Source: https://github.com/rust-itertools/itertools
    License: Apache-2.0 OR MIT
  itoa 1.0.18
    Source: https://github.com/dtolnay/itoa
    License: Apache-2.0 OR MIT
  jni 0.22.4
    Source: https://github.com/jni-rs/jni-rs
    License: Apache-2.0 OR MIT
  jni-macros 0.22.4
    Source: https://github.com/jni-rs/jni-rs
    License: Apache-2.0 OR MIT
  jni-sys 0.4.1
    Source: https://github.com/jni-rs/jni-sys
    License: Apache-2.0 OR MIT
  jni-sys-macros 0.4.1
    Source: https://github.com/jni-rs/jni-sys
    License: Apache-2.0 OR MIT
  jobserver 0.1.34
    Source: https://github.com/rust-lang/jobserver-rs
    License: Apache-2.0 OR MIT
  js-sys 0.3.103
    Source: https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/js-sys
    License: Apache-2.0 OR MIT
  kasuari 0.4.12
    Source: https://github.com/ratatui/kasuari
    License: Apache-2.0 OR MIT
  keyring-core 1.0.0
    Source: https://github.com/open-source-cooperative/keyring-core.git
    License: Apache-2.0 OR MIT
  lazy_static 1.5.0
    Source: https://github.com/rust-lang-nursery/lazy-static.rs
    License: Apache-2.0 OR MIT
  left-right 0.11.7
    Source: https://github.com/jonhoo/left-right.git
    License: Apache-2.0 OR MIT
  libc 0.2.186
    Source: https://github.com/rust-lang/libc
    License: Apache-2.0 OR MIT
  libdbus-sys 0.2.7
    Source: https://github.com/diwic/dbus-rs
    License: Apache-2.0 OR MIT
  line-clipping 0.3.7
    Source: https://github.com/ratatui/line-clipping
    License: Apache-2.0 OR MIT
  linked-hash-map 0.5.6
    Source: https://github.com/contain-rs/linked-hash-map
    License: Apache-2.0 OR MIT
  linkme 0.3.36
    Source: https://github.com/dtolnay/linkme
    License: Apache-2.0 OR MIT
  linkme-impl 0.3.36
    Source: https://github.com/dtolnay/linkme
    License: Apache-2.0 OR MIT
  litrs 1.0.0
    Source: https://github.com/LukasKalbertodt/litrs
    License: Apache-2.0 OR MIT
  lock_api 0.4.14
    Source: https://github.com/Amanieu/parking_lot
    License: Apache-2.0 OR MIT
  log 0.4.33
    Source: https://github.com/rust-lang/log
    License: Apache-2.0 OR MIT
  mac-notification-sys 0.6.15
    Source: https://github.com/h4llow3En/mac-notification-sys
    License: Apache-2.0 OR MIT
  mac_address 1.1.8
    Source: https://github.com/rep-nop/mac_address
    License: Apache-2.0 OR MIT
  memmem 0.1.1
    Source: http://github.com/jneem/memmem
    License: Apache-2.0 OR MIT
  mime 0.3.17
    Source: https://github.com/hyperium/mime
    License: Apache-2.0 OR MIT
  minimal-lexical 0.2.1
    Source: https://github.com/Alexhuszagh/minimal-lexical
    License: Apache-2.0 OR MIT
  ndk-context 0.1.1
    Source: https://github.com/rust-windowing/android-ndk-rs
    License: Apache-2.0 OR MIT
  no_std_io2 0.9.4
    Source: https://github.com/wcampbell0x2a/no-std-io2
    License: Apache-2.0 OR MIT
  nohash-hasher 0.2.0
    Source: https://github.com/paritytech/nohash-hasher
    License: Apache-2.0 OR MIT
  notify-rust 4.17.0
    Source: https://github.com/hoodie/notify-rust
    License: Apache-2.0 OR MIT
  notify-types 2.1.0
    Source: https://github.com/notify-rs/notify.git
    License: Apache-2.0 OR MIT
  ntapi 0.4.3
    Source: https://github.com/MSxDOS/ntapi
    License: Apache-2.0 OR MIT
  num 0.4.3
    Source: https://github.com/rust-num/num
    License: Apache-2.0 OR MIT
  num-bigint 0.4.6
    Source: https://github.com/rust-num/num-bigint
    License: Apache-2.0 OR MIT
  num-cmp 0.1.0
    Source: https://github.com/lifthrasiir/num-cmp
    License: Apache-2.0 OR MIT
  num-complex 0.4.6
    Source: https://github.com/rust-num/num-complex
    License: Apache-2.0 OR MIT
  num-conv 0.2.2
    Source: https://github.com/jhpratt/num-conv
    License: Apache-2.0 OR MIT
  num-derive 0.4.2
    Source: https://github.com/rust-num/num-derive
    License: Apache-2.0 OR MIT
  num-integer 0.1.46
    Source: https://github.com/rust-num/num-integer
    License: Apache-2.0 OR MIT
  num-iter 0.1.45
    Source: https://github.com/rust-num/num-iter
    License: Apache-2.0 OR MIT
  num-rational 0.4.2
    Source: https://github.com/rust-num/num-rational
    License: Apache-2.0 OR MIT
  num-traits 0.2.19
    Source: https://github.com/rust-num/num-traits
    License: Apache-2.0 OR MIT
  num_cpus 1.17.0
    Source: https://github.com/seanmonstar/num_cpus
    License: Apache-2.0 OR MIT
  num_threads 0.1.7
    Source: https://github.com/jhpratt/num_threads
    License: Apache-2.0 OR MIT
  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: Apache-2.0 OR MIT
  once_cell_polyfill 1.70.2
    Source: https://github.com/polyfill-rs/once_cell_polyfill
    License: Apache-2.0 OR MIT
  openssl-macros 0.1.1
    Source: N/A
    License: Apache-2.0 OR MIT
  openssl-probe 0.2.1
    Source: https://github.com/rustls/openssl-probe
    License: Apache-2.0 OR MIT
  openssl-src 300.6.1+3.6.3
    Source: https://github.com/alexcrichton/openssl-src-rs
    License: Apache-2.0 OR MIT
  ordered-stream 0.2.0
    Source: https://github.com/danieldg/ordered-stream
    License: Apache-2.0 OR MIT
  page_size 0.6.0
    Source: https://github.com/Elzair/page_size_rs
    License: Apache-2.0 OR MIT
  palette 0.7.6
    Source: https://github.com/Ogeon/palette
    License: Apache-2.0 OR MIT
  palette_derive 0.7.6
    Source: https://github.com/Ogeon/palette
    License: Apache-2.0 OR MIT
  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: Apache-2.0 OR MIT
  parking_lot_core 0.9.12
    Source: https://github.com/Amanieu/parking_lot
    License: Apache-2.0 OR MIT
  paste 1.0.15
    Source: https://github.com/dtolnay/paste
    License: Apache-2.0 OR MIT
  pastey 0.1.1
    Source: https://github.com/as1100k/pastey
    License: Apache-2.0 OR MIT
  pastey 0.2.3
    Source: https://github.com/as1100k/pastey
    License: Apache-2.0 OR MIT
  path-clean 1.0.1
    Source: https://github.com/danreeves/path-clean
    License: Apache-2.0 OR MIT
  percent-encoding 2.3.2
    Source: https://github.com/servo/rust-url/
    License: Apache-2.0 OR MIT
  pest 2.8.6
    Source: https://github.com/pest-parser/pest
    License: Apache-2.0 OR MIT
  pest_derive 2.8.6
    Source: https://github.com/pest-parser/pest
    License: Apache-2.0 OR MIT
  pest_generator 2.8.6
    Source: https://github.com/pest-parser/pest
    License: Apache-2.0 OR MIT
  pest_meta 2.8.6
    Source: https://github.com/pest-parser/pest
    License: Apache-2.0 OR MIT
  petgraph 0.8.3
    Source: https://github.com/petgraph/petgraph
    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
  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
  piper 0.2.5
    Source: https://github.com/smol-rs/piper
    License: Apache-2.0 OR MIT
  pkcs8 0.10.2
    Source: https://github.com/RustCrypto/formats/tree/master/pkcs8
    License: Apache-2.0 OR MIT
  pkg-config 0.3.33
    Source: https://github.com/rust-lang/pkg-config-rs
    License: Apache-2.0 OR MIT
  png 0.18.1
    Source: https://github.com/image-rs/image-png
    License: Apache-2.0 OR MIT
  polling 3.11.0
    Source: https://github.com/smol-rs/polling
    License: Apache-2.0 OR MIT
  portable-atomic 1.13.1
    Source: https://github.com/taiki-e/portable-atomic
    License: Apache-2.0 OR MIT
  powerfmt 0.2.0
    Source: https://github.com/jhpratt/powerfmt
    License: Apache-2.0 OR MIT
  ppv-lite86 0.2.21
    Source: https://github.com/cryptocorrosion/cryptocorrosion
    License: Apache-2.0 OR MIT
  predicates 3.1.4
    Source: https://github.com/assert-rs/predicates-rs
    License: Apache-2.0 OR MIT
  predicates-core 1.0.10
    Source: https://github.com/assert-rs/predicates-rs
    License: Apache-2.0 OR MIT
  predicates-tree 1.0.13
    Source: https://github.com/assert-rs/predicates-rs
    License: Apache-2.0 OR MIT
  pretty_assertions 1.4.1
    Source: https://github.com/rust-pretty-assertions/rust-pretty-assertions
    License: Apache-2.0 OR MIT
  prettyplease 0.2.37
    Source: https://github.com/dtolnay/prettyplease
    License: Apache-2.0 OR MIT
  proc-macro-crate 3.5.0
    Source: https://github.com/bkchr/proc-macro-crate
    License: Apache-2.0 OR MIT
  proc-macro2 1.0.106
    Source: https://github.com/dtolnay/proc-macro2
    License: Apache-2.0 OR MIT
  process-wrap 9.1.0
    Source: https://github.com/watchexec/process-wrap
    License: Apache-2.0 OR MIT
  profiling 1.0.18
    Source: https://github.com/aclysma/profiling
    License: Apache-2.0 OR MIT
  profiling-procmacros 1.0.18
    Source: https://github.com/aclysma/profiling
    License: Apache-2.0 OR MIT
  proptest 1.11.0
    Source: https://github.com/proptest-rs/proptest
    License: Apache-2.0 OR MIT
  qoi 0.4.1
    Source: https://github.com/aldanor/qoi-rust
    License: Apache-2.0 OR MIT
  quick-error 1.2.3
    Source: http://github.com/tailhook/quick-error
    License: Apache-2.0 OR MIT
  quick-error 2.0.1
    Source: http://github.com/tailhook/quick-error
    License: Apache-2.0 OR MIT
  quinn 0.11.11
    Source: https://github.com/quinn-rs/quinn
    License: Apache-2.0 OR MIT
  quinn-proto 0.11.15
    Source: https://github.com/quinn-rs/quinn
    License: Apache-2.0 OR MIT
  quinn-udp 0.5.14
    Source: https://github.com/quinn-rs/quinn
    License: Apache-2.0 OR MIT
  quote 1.0.46
    Source: https://github.com/dtolnay/quote
    License: Apache-2.0 OR MIT
  rand 0.8.6
    Source: https://github.com/rust-random/rand
    License: Apache-2.0 OR MIT
  rand 0.9.4
    Source: https://github.com/rust-random/rand
    License: Apache-2.0 OR MIT
  rand 0.10.1
    Source: https://github.com/rust-random/rand
    License: Apache-2.0 OR MIT
  rand_chacha 0.9.0
    Source: https://github.com/rust-random/rand
    License: Apache-2.0 OR MIT
  rand_core 0.6.4
    Source: https://github.com/rust-random/rand
    License: Apache-2.0 OR MIT
  rand_core 0.9.5
    Source: https://github.com/rust-random/rand
    License: Apache-2.0 OR MIT
  rand_core 0.10.1
    Source: https://github.com/rust-random/rand_core
    License: Apache-2.0 OR MIT
  rand_xorshift 0.4.0
    Source: https://github.com/rust-random/rngs
    License: Apache-2.0 OR MIT
  rayon 1.12.0
    Source: https://github.com/rayon-rs/rayon
    License: Apache-2.0 OR MIT
  rayon-core 1.13.0
    Source: https://github.com/rayon-rs/rayon
    License: Apache-2.0 OR MIT
  ref-cast 1.0.25
    Source: https://github.com/dtolnay/ref-cast
    License: Apache-2.0 OR MIT
  ref-cast-impl 1.0.25
    Source: https://github.com/dtolnay/ref-cast
    License: Apache-2.0 OR MIT
  regex 1.12.4
    Source: https://github.com/rust-lang/regex
    License: Apache-2.0 OR MIT
  regex-automata 0.4.14
    Source: https://github.com/rust-lang/regex
    License: Apache-2.0 OR MIT
  regex-syntax 0.8.11
    Source: https://github.com/rust-lang/regex
    License: Apache-2.0 OR MIT
  reqwest 0.12.28
    Source: https://github.com/seanmonstar/reqwest
    License: Apache-2.0 OR MIT
  reqwest 0.13.4
    Source: https://github.com/seanmonstar/reqwest
    License: Apache-2.0 OR MIT
  roff 1.1.1
    Source: https://github.com/rust-cli/roff-rs
    License: Apache-2.0 OR MIT
  rustc-demangle 0.1.27
    Source: https://github.com/rust-lang/rustc-demangle
    License: Apache-2.0 OR MIT
  rustc-hash 1.1.0
    Source: https://github.com/rust-lang-nursery/rustc-hash
    License: Apache-2.0 OR MIT
  rustc-hash 2.1.2
    Source: https://github.com/rust-lang/rustc-hash
    License: Apache-2.0 OR MIT
  rustc_version 0.4.1
    Source: https://github.com/djc/rustc-version-rs
    License: Apache-2.0 OR MIT
  rustls-pki-types 1.15.0
    Source: https://github.com/rustls/pki-types
    License: Apache-2.0 OR MIT
  rustls-platform-verifier 0.7.0
    Source: https://github.com/rustls/rustls-platform-verifier
    License: Apache-2.0 OR MIT
  rustls-platform-verifier-android 0.1.1
    Source: https://github.com/rustls/rustls-platform-verifier
    License: Apache-2.0 OR MIT
  rustversion 1.0.22
    Source: https://github.com/dtolnay/rustversion
    License: Apache-2.0 OR MIT
  rusty-fork 0.3.1
    Source: https://github.com/altsysrq/rusty-fork
    License: Apache-2.0 OR MIT
  scoped-tls 1.0.1
    Source: https://github.com/alexcrichton/scoped-tls
    License: Apache-2.0 OR MIT
  scopeguard 1.2.0
    Source: https://github.com/bluss/scopeguard
    License: Apache-2.0 OR MIT
  security-framework 3.7.0
    Source: https://github.com/kornelski/rust-security-framework
    License: Apache-2.0 OR MIT
  security-framework-sys 2.17.0
    Source: https://github.com/kornelski/rust-security-framework
    License: Apache-2.0 OR MIT
  semver 1.0.28
    Source: https://github.com/dtolnay/semver
    License: Apache-2.0 OR MIT
  send_wrapper 0.6.0
    Source: https://github.com/thk1/send_wrapper
    License: Apache-2.0 OR MIT
  serde 1.0.228
    Source: https://github.com/serde-rs/serde
    License: Apache-2.0 OR MIT
  serde-saphyr 0.0.28
    Source: https://github.com/bourumir-wyngs/serde-saphyr
    License: Apache-2.0 OR MIT
  serde_core 1.0.228
    Source: https://github.com/serde-rs/serde
    License: Apache-2.0 OR MIT
  serde_derive 1.0.228
    Source: https://github.com/serde-rs/serde
    License: Apache-2.0 OR MIT
  serde_derive_internals 0.29.1
    Source: https://github.com/serde-rs/serde
    License: Apache-2.0 OR MIT
  serde_json 1.0.150
    Source: https://github.com/serde-rs/json
    License: Apache-2.0 OR MIT
  serde_path_to_error 0.1.20
    Source: https://github.com/dtolnay/path-to-error
    License: Apache-2.0 OR MIT
  serde_repr 0.1.20
    Source: https://github.com/dtolnay/serde-repr
    License: Apache-2.0 OR MIT
  serde_spanned 1.1.1
    Source: https://github.com/toml-rs/toml
    License: Apache-2.0 OR MIT
  serde_urlencoded 0.7.1
    Source: https://github.com/nox/serde_urlencoded
    License: Apache-2.0 OR MIT
  serde_with 3.21.0
    Source: https://github.com/jonasbb/serde_with/
    License: Apache-2.0 OR MIT
  serde_with_macros 3.21.0
    Source: https://github.com/jonasbb/serde_with/
    License: Apache-2.0 OR MIT
  sha1 0.10.6
    Source: https://github.com/RustCrypto/hashes
    License: Apache-2.0 OR MIT
  sha2 0.10.9
    Source: https://github.com/RustCrypto/hashes
    License: Apache-2.0 OR MIT
  sha2 0.11.0
    Source: https://github.com/RustCrypto/hashes
    License: Apache-2.0 OR MIT
  shared_library 0.1.9
    Source: https://github.com/tomaka/shared_library/
    License: Apache-2.0 OR MIT
  shell-escape 0.1.5
    Source: https://github.com/sfackler/shell-escape
    License: Apache-2.0 OR MIT
  shell-words 1.1.1
    Source: https://github.com/tmiasko/shell-words
    License: Apache-2.0 OR MIT
  shlex 2.0.1
    Source: https://github.com/comex/rust-shlex
    License: Apache-2.0 OR MIT
  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: Apache-2.0 OR MIT
  signal-hook-mio 0.2.5
    Source: https://github.com/vorner/signal-hook
    License: Apache-2.0 OR MIT
  signal-hook-registry 1.4.8
    Source: https://github.com/vorner/signal-hook
    License: Apache-2.0 OR MIT
  signature 2.2.0
    Source: https://github.com/RustCrypto/traits/tree/master/signature
    License: Apache-2.0 OR MIT
  simd_cesu8 1.1.1
    Source: https://github.com/seancroach/simd_cesu8
    License: Apache-2.0 OR MIT
  simdutf8 0.1.5
    Source: https://github.com/rusticstuff/simdutf8
    License: Apache-2.0 OR MIT
  siphasher 1.0.3
    Source: https://github.com/jedisct1/rust-siphash
    License: Apache-2.0 OR MIT
  smallvec 1.15.2
    Source: https://github.com/servo/rust-smallvec
    License: Apache-2.0 OR MIT
  socket2 0.6.4
    Source: https://github.com/rust-lang/socket2
    License: Apache-2.0 OR MIT
  socks 0.3.4
    Source: https://github.com/sfackler/rust-socks
    License: Apache-2.0 OR MIT
  spki 0.7.3
    Source: https://github.com/RustCrypto/formats/tree/master/spki
    License: Apache-2.0 OR MIT
  sse-stream 0.2.3
    Source: https://github.com/4t145/sse-stream/
    License: Apache-2.0 OR MIT
  stable_deref_trait 1.2.1
    Source: https://github.com/storyyeller/stable_deref_trait
    License: Apache-2.0 OR MIT
  static_assertions 1.1.0
    Source: https://github.com/nvzqz/static-assertions-rs
    License: Apache-2.0 OR MIT
  streaming-iterator 0.1.9
    Source: https://github.com/sfackler/streaming-iterator
    License: Apache-2.0 OR MIT
  syn 1.0.109
    Source: https://github.com/dtolnay/syn
    License: Apache-2.0 OR MIT
  syn 2.0.118
    Source: https://github.com/dtolnay/syn
    License: Apache-2.0 OR MIT
  system-configuration 0.7.0
    Source: https://github.com/mullvad/system-configuration-rs
    License: Apache-2.0 OR MIT
  system-configuration-sys 0.6.0
    Source: https://github.com/mullvad/system-configuration-rs
    License: Apache-2.0 OR MIT
  tar 0.4.46
    Source: https://github.com/composefs/tar-rs
    License: Apache-2.0 OR MIT
  tauri-winrt-notification 0.7.2
    Source: https://github.com/tauri-apps/winrt-notification
    License: Apache-2.0 OR MIT
  tempfile 3.27.0
    Source: https://github.com/Stebalien/tempfile
    License: Apache-2.0 OR MIT
  terminal_size 0.4.4
    Source: https://github.com/eminence/terminal-size
    License: Apache-2.0 OR MIT
  thiserror 1.0.69
    Source: https://github.com/dtolnay/thiserror
    License: Apache-2.0 OR MIT
  thiserror 2.0.18
    Source: https://github.com/dtolnay/thiserror
    License: Apache-2.0 OR MIT
  thiserror-impl 1.0.69
    Source: https://github.com/dtolnay/thiserror
    License: Apache-2.0 OR MIT
  thiserror-impl 2.0.18
    Source: https://github.com/dtolnay/thiserror
    License: Apache-2.0 OR MIT
  thread_local 1.1.9
    Source: https://github.com/Amanieu/thread_local-rs
    License: Apache-2.0 OR MIT
  tiktoken 3.5.1
    Source: https://github.com/goliajp/rust-tiktoken
    License: Apache-2.0 OR MIT
  tikv-jemalloc-sys 0.6.1+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7
    Source: https://github.com/tikv/jemallocator
    License: Apache-2.0 OR MIT
  tikv-jemallocator 0.6.1
    Source: https://github.com/tikv/jemallocator
    License: Apache-2.0 OR MIT
  time 0.3.53
    Source: https://github.com/time-rs/time
    License: Apache-2.0 OR MIT
  time-core 0.1.9
    Source: https://github.com/time-rs/time
    License: Apache-2.0 OR MIT
  time-macros 0.2.31
    Source: https://github.com/time-rs/time
    License: Apache-2.0 OR MIT
  tinytemplate 1.2.1
    Source: https://github.com/bheisler/TinyTemplate
    License: Apache-2.0 OR MIT
  tokio-rustls 0.26.4
    Source: https://github.com/rustls/tokio-rustls
    License: Apache-2.0 OR MIT
  toml 1.1.2+spec-1.1.0
    Source: https://github.com/toml-rs/toml
    License: Apache-2.0 OR MIT
  toml_datetime 1.1.1+spec-1.1.0
    Source: https://github.com/toml-rs/toml
    License: Apache-2.0 OR MIT
  toml_edit 0.25.12+spec-1.1.0
    Source: https://github.com/toml-rs/toml
    License: Apache-2.0 OR MIT
  toml_parser 1.1.2+spec-1.1.0
    Source: https://github.com/toml-rs/toml
    License: Apache-2.0 OR MIT
  toml_writer 1.1.1+spec-1.1.0
    Source: https://github.com/toml-rs/toml
    License: Apache-2.0 OR MIT
  tungstenite 0.28.0
    Source: https://github.com/snapview/tungstenite-rs
    License: Apache-2.0 OR MIT
  tungstenite 0.29.0
    Source: https://github.com/snapview/tungstenite-rs
    License: Apache-2.0 OR MIT
  typed-path 0.12.3
    Source: https://github.com/chipsenkbeil/typed-path
    License: Apache-2.0 OR MIT
  typenum 1.20.1
    Source: https://github.com/paholg/typenum
    License: Apache-2.0 OR MIT
  ucd-trie 0.1.7
    Source: https://github.com/BurntSushi/ucd-generate
    License: Apache-2.0 OR MIT
  unarray 0.1.4
    Source: https://github.com/cameron1024/unarray
    License: Apache-2.0 OR MIT
  unicase 2.9.0
    Source: https://github.com/seanmonstar/unicase
    License: Apache-2.0 OR MIT
  unicode-segmentation 1.13.3
    Source: https://github.com/unicode-rs/unicode-segmentation
    License: Apache-2.0 OR MIT
  unicode-truncate 2.0.1
    Source: https://github.com/Aetf/unicode-truncate
    License: Apache-2.0 OR MIT
  unicode-width 0.2.2
    Source: https://github.com/unicode-rs/unicode-width
    License: Apache-2.0 OR MIT
  unicode-xid 0.2.6
    Source: https://github.com/unicode-rs/unicode-xid
    License: Apache-2.0 OR MIT
  ureq 3.3.0
    Source: https://github.com/algesten/ureq
    License: Apache-2.0 OR MIT
  ureq-proto 0.6.0
    Source: https://github.com/algesten/ureq-proto
    License: Apache-2.0 OR MIT
  url 2.5.8
    Source: https://github.com/servo/rust-url
    License: Apache-2.0 OR MIT
  utf-8 0.7.6
    Source: https://github.com/SimonSapin/rust-utf8
    License: Apache-2.0 OR MIT
  utf8-zero 0.8.1
    Source: https://github.com/algesten/utf8-zero
    License: Apache-2.0 OR MIT
  utf8_iter 1.0.4
    Source: https://github.com/hsivonen/utf8_iter
    License: Apache-2.0 OR MIT
  utf8parse 0.2.2
    Source: https://github.com/alacritty/vte
    License: Apache-2.0 OR MIT
  uuid 1.23.4
    Source: https://github.com/uuid-rs/uuid
    License: Apache-2.0 OR MIT
  vcpkg 0.2.15
    Source: https://github.com/mcgoo/vcpkg-rs
    License: Apache-2.0 OR MIT
  version_check 0.9.5
    Source: https://github.com/SergioBenitez/version_check
    License: Apache-2.0 OR MIT
  vtcode 0.135.11
    Source: https://github.com/vinhnx/vtcode
    License: Apache-2.0 OR MIT
  vtcode-a2a 0.135.11
    Source: https://github.com/vinhnx/vtcode
    License: Apache-2.0 OR MIT
  vtcode-acp 0.135.11
    Source: https://github.com/vinhnx/vtcode
    License: Apache-2.0 OR MIT
  vtcode-auth 0.135.11
    Source: https://github.com/vinhnx/vtcode
    License: Apache-2.0 OR MIT
  vtcode-bash-runner 0.135.11
    Source: https://github.com/vinhnx/vtcode
    License: Apache-2.0 OR MIT
  vtcode-commons 0.135.11
    Source: https://github.com/vinhnx/vtcode
    License: Apache-2.0 OR MIT
  vtcode-config 0.135.11
    Source: https://github.com/vinhnx/vtcode
    License: Apache-2.0 OR MIT
  vtcode-core 0.135.11
    Source: https://github.com/vinhnx/vtcode
    License: Apache-2.0 OR MIT
  vtcode-eval 0.135.11
    Source: https://github.com/vinhnx/vtcode
    License: Apache-2.0 OR MIT
  vtcode-exec-events 0.135.11
    Source: https://github.com/vinhnx/vtcode
    License: Apache-2.0 OR MIT
  vtcode-indexer 0.135.11
    Source: https://github.com/vinhnx/vtcode
    License: Apache-2.0 OR MIT
  vtcode-llm 0.135.11
    Source: https://github.com/vinhnx/vtcode
    License: Apache-2.0 OR MIT
  vtcode-macros 0.135.11
    Source: https://github.com/vinhnx/vtcode
    License: Apache-2.0 OR MIT
  vtcode-mcp 0.135.11
    Source: https://github.com/vinhnx/vtcode
    License: Apache-2.0 OR MIT
  vtcode-safety 0.135.11
    Source: https://github.com/vinhnx/vtcode
    License: Apache-2.0 OR MIT
  vtcode-memory 0.135.11
    Source: https://github.com/vinhnx/vtcode
    License: Apache-2.0 OR MIT
  vtcode-skills 0.135.11
    Source: N/A
    License: Apache-2.0 OR MIT
  vtcode-ui 0.135.11
    Source: https://github.com/vinhnx/vtcode
    License: Apache-2.0 OR MIT
  vtcode-utility-tool-specs 0.135.11
    Source: https://github.com/vinhnx/vtcode
    License: Apache-2.0 OR MIT
  vte 0.15.0
    Source: https://github.com/alacritty/vte
    License: Apache-2.0 OR MIT
  wait-timeout 0.2.1
    Source: https://github.com/alexcrichton/wait-timeout
    License: Apache-2.0 OR MIT
  wasm-bindgen 0.2.126
    Source: https://github.com/wasm-bindgen/wasm-bindgen
    License: Apache-2.0 OR MIT
  wasm-bindgen-futures 0.4.76
    Source: https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/futures
    License: Apache-2.0 OR MIT
  wasm-bindgen-macro 0.2.126
    Source: https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/macro
    License: Apache-2.0 OR MIT
  wasm-bindgen-macro-support 0.2.126
    Source: https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/macro-support
    License: Apache-2.0 OR MIT
  wasm-bindgen-shared 0.2.126
    Source: https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/shared
    License: Apache-2.0 OR MIT
  wasm-streams 0.4.2
    Source: https://github.com/MattiasBuelens/wasm-streams/
    License: Apache-2.0 OR MIT
  wasm-streams 0.5.0
    Source: https://github.com/MattiasBuelens/wasm-streams/
    License: Apache-2.0 OR MIT
  web-sys 0.3.103
    Source: https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/web-sys
    License: Apache-2.0 OR MIT
  web-time 1.1.0
    Source: https://github.com/daxpedda/web-time
    License: Apache-2.0 OR MIT
  webbrowser 1.2.1
    Source: https://github.com/amodm/webbrowser-rs
    License: Apache-2.0 OR MIT
  weezl 0.1.12
    Source: https://github.com/image-rs/weezl
    License: Apache-2.0 OR MIT
  winapi 0.3.9
    Source: https://github.com/retep998/winapi-rs
    License: Apache-2.0 OR MIT
  winapi-i686-pc-windows-gnu 0.4.0
    Source: https://github.com/retep998/winapi-rs
    License: Apache-2.0 OR MIT
  winapi-x86_64-pc-windows-gnu 0.4.0
    Source: https://github.com/retep998/winapi-rs
    License: Apache-2.0 OR MIT
  windows 0.61.3
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows 0.62.2
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows-collections 0.2.0
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows-collections 0.3.2
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows-core 0.61.2
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows-core 0.62.2
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows-future 0.2.1
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows-future 0.3.2
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows-implement 0.60.2
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows-interface 0.59.3
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows-link 0.1.3
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows-link 0.2.1
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows-native-keyring-store 1.1.0
    Source: https://github.com/open-source-cooperative/windows-native-keyring-store.git
    License: Apache-2.0 OR MIT
  windows-numerics 0.2.0
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows-numerics 0.3.1
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows-registry 0.6.1
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows-result 0.3.4
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows-result 0.4.1
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows-strings 0.4.2
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows-strings 0.5.1
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows-sys 0.52.0
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows-sys 0.59.0
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows-sys 0.60.2
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows-sys 0.61.2
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows-targets 0.52.6
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows-targets 0.53.5
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows-threading 0.1.0
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows-threading 0.2.1
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows-version 0.1.7
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows_aarch64_gnullvm 0.52.6
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows_aarch64_gnullvm 0.53.1
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows_aarch64_msvc 0.52.6
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows_aarch64_msvc 0.53.1
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows_i686_gnu 0.52.6
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows_i686_gnu 0.53.1
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows_i686_gnullvm 0.52.6
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows_i686_gnullvm 0.53.1
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows_i686_msvc 0.52.6
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows_i686_msvc 0.53.1
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows_x86_64_gnu 0.52.6
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows_x86_64_gnu 0.53.1
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows_x86_64_gnullvm 0.52.6
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows_x86_64_gnullvm 0.53.1
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows_x86_64_msvc 0.52.6
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  windows_x86_64_msvc 0.53.1
    Source: https://github.com/microsoft/windows-rs
    License: Apache-2.0 OR MIT
  wiremock 0.6.5
    Source: https://github.com/LukeMathWalker/wiremock-rs
    License: Apache-2.0 OR MIT
  wl-clipboard-rs 0.9.3
    Source: https://github.com/YaLTeR/wl-clipboard-rs
    License: Apache-2.0 OR MIT
  x11rb 0.13.2
    Source: https://github.com/psychon/x11rb
    License: Apache-2.0 OR MIT
  x11rb-protocol 0.13.2
    Source: https://github.com/psychon/x11rb
    License: Apache-2.0 OR MIT
  xattr 1.6.1
    Source: https://github.com/Stebalien/xattr
    License: Apache-2.0 OR MIT
  yaml-rust 0.4.5
    Source: https://github.com/chyh1990/yaml-rust
    License: Apache-2.0 OR MIT
  yansi 1.0.1
    Source: https://github.com/SergioBenitez/yansi
    License: Apache-2.0 OR MIT
  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

--------------------------------------------------------------------------------
MIT (225 crates)
--------------------------------------------------------------------------------
  aligned-vec 0.6.4
    Source: https://github.com/sarah-ek/aligned-vec/
    License: MIT
  alloca 0.4.0
    Source: https://github.com/playXE/alloca-rs
    License: MIT
  ansi-to-tui 8.0.1
    Source: https://github.com/ratatui/ansi-to-tui
    License: MIT
  arg_enum_proc_macro 0.3.4
    Source: https://github.com/lu-zero/arg_enum_proc_macro
    License: MIT
  assert-json-diff 2.0.2
    Source: https://github.com/davidpdrsn/assert-json-diff.git
    License: MIT
  async-stream 0.3.6
    Source: https://github.com/tokio-rs/async-stream
    License: MIT
  async-stream-impl 0.3.6
    Source: https://github.com/tokio-rs/async-stream
    License: MIT
  av-scenechange 0.14.1
    Source: https://github.com/rust-av/av-scenechange
    License: MIT
  axum 0.8.9
    Source: https://github.com/tokio-rs/axum
    License: MIT
  axum-core 0.5.6
    Source: https://github.com/tokio-rs/axum
    License: MIT
  axum-macros 0.5.1
    Source: https://github.com/tokio-rs/axum
    License: MIT
  better-panic 0.3.0
    Source: https://github.com/mitsuhiko/better-panic
    License: MIT
  bincode 1.3.3
    Source: https://github.com/servo/bincode
    License: MIT
  block2 0.6.2
    Source: https://github.com/madsmtm/objc2
    License: MIT
  built 0.8.1
    Source: https://github.com/lukaslueg/built
    License: MIT
  bytes 1.12.0
    Source: https://github.com/tokio-rs/bytes
    License: MIT
  castaway 0.2.4
    Source: https://github.com/sagebind/castaway
    License: MIT
  catppuccin 2.8.0
    Source: https://github.com/catppuccin/rust
    License: MIT
  cfg_aliases 0.1.1
    Source: https://github.com/katharostech/cfg_aliases
    License: MIT
  cfg_aliases 0.2.1
    Source: https://github.com/katharostech/cfg_aliases
    License: MIT
  color_quant 1.1.0
    Source: https://github.com/image-rs/color_quant.git
    License: MIT
  combine 4.6.7
    Source: https://github.com/Marwes/combine
    License: MIT
  compact_str 0.9.1
    Source: https://github.com/ParkMyCar/compact_str
    License: 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
  convert_case 0.10.0
    Source: https://github.com/rutrum/convert-case
    License: 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
  crunchy 0.2.4
    Source: https://github.com/eira-fransham/crunchy
    License: 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
  data-encoding 2.11.0
    Source: https://github.com/ia0/data-encoding
    License: MIT
  deltae 0.3.2
    Source: https://gitlab.com/ryanobeirne/deltae.git
    License: MIT
  derive_more 2.1.1
    Source: https://github.com/JelteF/derive_more
    License: MIT
  derive_more-impl 2.1.1
    Source: https://github.com/JelteF/derive_more
    License: MIT
  dialoguer 0.12.0
    Source: https://github.com/console-rs/dialoguer
    License: MIT
  difflib 0.4.0
    Source: https://github.com/DimaKudosh/difflib
    License: MIT
  dotenvy 0.15.7
    Source: https://github.com/allan2/dotenvy
    License: MIT
  email_address 0.2.9
    Source: https://github.com/johnstonskj/rust-email_address.git
    License: MIT
  endi 1.1.1
    Source: https://github.com/zeenix/endi
    License: MIT
  equator 0.4.2
    Source: https://github.com/sarah-ek/equator/
    License: MIT
  equator-macro 0.4.2
    Source: https://github.com/sarah-ek/equator/
    License: MIT
  fancy-regex 0.11.0
    Source: https://github.com/fancy-regex/fancy-regex
    License: 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
  fax 0.2.7
    Source: https://github.com/pdf-rs/fax
    License: MIT
  filedescriptor 0.8.3
    Source: https://github.com/wezterm/wezterm
    License: MIT
  float-cmp 0.10.0
    Source: https://github.com/mikedilger/float-cmp
    License: MIT
  fluent-uri 0.4.1
    Source: https://github.com/yescallop/fluent-uri-rs
    License: MIT
  fs_extra 1.3.0
    Source: https://github.com/webdesus/fs_extra
    License: MIT
  fsevent-sys 4.1.0
    Source: https://github.com/octplane/fsevent-rust/tree/master/fsevent-sys
    License: MIT
  generic-array 0.14.7
    Source: https://github.com/fizyk20/generic-array.git
    License: MIT
  globwalk 0.9.1
    Source: https://github.com/gilnaa/globwalk
    License: MIT
  h2 0.4.15
    Source: https://github.com/hyperium/h2
    License: MIT
  hostname 0.4.2
    Source: https://github.com/djc/hostname
    License: MIT
  http-body 1.0.1
    Source: https://github.com/hyperium/http-body
    License: MIT
  http-body-util 0.1.3
    Source: https://github.com/hyperium/http-body
    License: MIT
  hyper 1.10.1
    Source: https://github.com/hyperium/hyper
    License: MIT
  hyper-util 0.1.20
    Source: https://github.com/hyperium/hyper-util
    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
  indicatif 0.18.6
    Source: https://github.com/console-rs/indicatif
    License: MIT
  instability 0.3.12
    Source: https://github.com/ratatui/instability
    License: MIT
  interpolate_name 0.2.4
    Source: https://github.com/lu-zero/interpolate_name
    License: MIT
  json5 1.3.1
    Source: https://github.com/callum-oakley/json5-rs
    License: MIT
  jsonschema 0.46.8
    Source: https://github.com/Stranger6667/jsonschema
    License: MIT
  kqueue 1.2.0
    Source: https://gitlab.com/rust-kqueue/rust-kqueue
    License: MIT
  kqueue-sys 1.1.2
    Source: https://gitlab.com/rust-kqueue/rust-kqueue-sys
    License: MIT
  lab 0.11.0
    Source: https://github.com/TooManyBees/lab
    License: MIT
  libm 0.2.16
    Source: https://github.com/rust-lang/compiler-builtins
    License: MIT
  libmimalloc-sys 0.1.49
    Source: https://github.com/purpleprotocol/mimalloc_rust/tree/master/libmimalloc-sys
    License: MIT
  libredox 0.1.18
    Source: https://gitlab.redox-os.org/redox-os/libredox.git
    License: MIT
  libsqlite3-sys 0.33.0
    Source: https://github.com/rusqlite/rusqlite
    License: MIT
  loom 0.7.2
    Source: https://github.com/tokio-rs/loom
    License: MIT
  loop9 0.1.5
    Source: https://gitlab.com/kornelski/loop9.git
    License: MIT
  lru 0.18.0
    Source: https://github.com/jeromefroe/lru-rs.git
    License: MIT
  matchers 0.2.0
    Source: https://github.com/hawkw/matchers
    License: MIT
  maybe-rayon 0.1.1
    Source: https://github.com/shssoichiro/maybe-rayon
    License: MIT
  memoffset 0.9.1
    Source: https://github.com/Gilnaa/memoffset
    License: MIT
  micromap 0.3.0
    Source: https://github.com/yegor256/micromap
    License: MIT
  mimalloc 0.1.52
    Source: https://github.com/purpleprotocol/mimalloc_rust
    License: MIT
  mime_guess 2.0.5
    Source: https://github.com/abonander/mime_guess
    License: MIT
  mio 1.2.1
    Source: https://github.com/tokio-rs/mio
    License: MIT
  mockito 1.7.2
    Source: https://github.com/lipanski/mockito
    License: MIT
  new_debug_unreachable 1.0.6
    Source: https://github.com/mbrubeck/rust-debug-unreachable
    License: MIT
  nix 0.28.0
    Source: https://github.com/nix-rust/nix
    License: MIT
  nix 0.29.0
    Source: https://github.com/nix-rust/nix
    License: MIT
  nix 0.31.3
    Source: https://github.com/nix-rust/nix
    License: 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
  noop_proc_macro 0.3.0
    Source: https://github.com/lu-zero/noop_proc_macro
    License: MIT
  nu-ansi-term 0.50.3
    Source: https://github.com/nushell/nu-ansi-term
    License: MIT
  objc2 0.6.4
    Source: https://github.com/madsmtm/objc2
    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
  oorandom 11.1.5
    Source: https://hg.sr.ht/~icefox/oorandom
    License: MIT
  openssl-sys 0.9.117
    Source: https://github.com/rust-openssl/rust-openssl
    License: MIT
  ordered-float 4.6.0
    Source: https://github.com/reem/rust-ordered-float
    License: MIT
  ordered-float 5.3.0
    Source: https://github.com/reem/rust-ordered-float
    License: MIT
  os_pipe 1.2.3
    Source: https://github.com/oconnor663/os_pipe.rs
    License: MIT
  outref 0.5.2
    Source: https://github.com/Nugine/outref
    License: MIT
  owo-colors 4.3.0
    Source: https://github.com/owo-colors/owo-colors
    License: MIT
  phf 0.11.3
    Source: https://github.com/rust-phf/rust-phf
    License: MIT
  phf_codegen 0.11.3
    Source: https://github.com/rust-phf/rust-phf
    License: MIT
  phf_generator 0.11.3
    Source: https://github.com/rust-phf/rust-phf
    License: MIT
  phf_macros 0.11.3
    Source: https://github.com/rust-phf/rust-phf
    License: MIT
  phf_shared 0.11.3
    Source: https://github.com/rust-phf/rust-phf
    License: MIT
  plist 1.9.0
    Source: https://github.com/ebarnard/rust-plist/
    License: MIT
  plotters 0.3.7
    Source: https://github.com/plotters-rs/plotters
    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
  portable-pty 0.9.0
    Source: https://github.com/wezterm/wezterm
    License: MIT
  pulldown-cmark 0.13.4
    Source: https://github.com/raphlinus/pulldown-cmark
    License: MIT
  pulldown-cmark-escape 0.11.0
    Source: https://github.com/raphlinus/pulldown-cmark
    License: MIT
  quick-xml 0.37.5
    Source: https://github.com/tafia/quick-xml
    License: MIT
  quick-xml 0.38.4
    Source: https://github.com/tafia/quick-xml
    License: MIT
  quick-xml 0.39.4
    Source: https://github.com/tafia/quick-xml
    License: MIT
  quick_cache 0.7.0
    Source: https://github.com/arthurprs/quick-cache
    License: MIT
  ratatui 0.30.2
    Source: https://github.com/ratatui/ratatui
    License: MIT
  ratatui-cheese 0.7.0
    Source: https://github.com/shashanktomar/ratatui-cheese
    License: 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-macros 0.7.2
    Source: https://github.com/ratatui/ratatui
    License: MIT
  ratatui-termina 0.1.0
    Source: https://github.com/ratatui/ratatui
    License: MIT
  ratatui-termwiz 0.1.2
    Source: https://github.com/ratatui/ratatui
    License: MIT
  ratatui-textarea 0.9.2
    Source: https://github.com/ratatui/ratatui-textarea
    License: MIT
  ratatui-widgets 0.3.2
    Source: https://github.com/ratatui/ratatui
    License: MIT
  redox_syscall 0.5.18
    Source: https://gitlab.redox-os.org/redox-os/syscall
    License: MIT
  redox_users 0.5.2
    Source: https://gitlab.redox-os.org/redox-os/users
    License: MIT
  referencing 0.46.8
    Source: https://github.com/Stranger6667/jsonschema
    License: MIT
  rgb 0.8.53
    Source: https://github.com/kornelski/rust-rgb
    License: MIT
  rig-core 0.40.0
    Source: https://github.com/0xPlaygrounds/rig
    License: MIT
  rusqlite 0.35.0
    Source: https://github.com/rusqlite/rusqlite
    License: MIT
  ruzstd 0.8.3
    Source: https://github.com/KillingSpark/zstd-rs
    License: MIT
  schannel 0.1.29
    Source: https://github.com/steffengy/schannel-rs
    License: MIT
  schemars 0.9.0
    Source: https://github.com/GREsau/schemars
    License: MIT
  schemars 1.2.1
    Source: https://github.com/GREsau/schemars
    License: MIT
  schemars_derive 1.2.1
    Source: https://github.com/GREsau/schemars
    License: MIT
  self_update 0.43.1
    Source: https://github.com/jaemk/self_update
    License: 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
  sharded-slab 0.1.7
    Source: https://github.com/hawkw/sharded-slab
    License: MIT
  simd-adler32 0.3.9
    Source: https://github.com/mcountryman/simd-adler32
    License: MIT
  simd_helpers 0.1.0
    Source: https://github.com/lu-zero/simd_helpers
    License: MIT
  slab 0.4.12
    Source: https://github.com/tokio-rs/slab
    License: MIT
  smawk 0.3.3
    Source: https://github.com/mgeisler/smawk
    License: MIT
  strsim 0.11.1
    Source: https://github.com/rapidfuzz/strsim-rs
    License: 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
  synstructure 0.13.2
    Source: https://github.com/mystor/synstructure
    License: MIT
  syntect 5.3.0
    Source: https://github.com/trishume/syntect
    License: MIT
  sysinfo 0.38.4
    Source: https://github.com/GuillaumeGomez/sysinfo
    License: MIT
  termios 0.3.3
    Source: https://github.com/dcuddeback/termios-rs
    License: MIT
  termtree 0.5.1
    Source: https://github.com/rust-cli/termtree
    License: MIT
  termwiz 0.23.3
    Source: https://github.com/wezterm/wezterm
    License: MIT
  textwrap 0.16.2
    Source: https://github.com/mgeisler/textwrap
    License: MIT
  tiff 0.11.3
    Source: https://github.com/image-rs/image-tiff
    License: MIT
  tokio 1.52.3
    Source: https://github.com/tokio-rs/tokio
    License: MIT
  tokio-macros 2.7.0
    Source: https://github.com/tokio-rs/tokio
    License: MIT
  tokio-stream 0.1.18
    Source: https://github.com/tokio-rs/tokio
    License: MIT
  tokio-tungstenite 0.28.0
    Source: https://github.com/snapview/tokio-tungstenite
    License: MIT
  tokio-tungstenite 0.29.0
    Source: https://github.com/snapview/tokio-tungstenite
    License: MIT
  tokio-util 0.7.18
    Source: https://github.com/tokio-rs/tokio
    License: MIT
  tower 0.5.3
    Source: https://github.com/tower-rs/tower
    License: MIT
  tower-http 0.6.11
    Source: https://github.com/tower-rs/tower-http
    License: MIT
  tower-http 0.7.0
    Source: https://github.com/tower-rs/tower-http
    License: 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
  tracing 0.1.44
    Source: https://github.com/tokio-rs/tracing
    License: 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
  tree-sitter 0.26.10
    Source: https://github.com/tree-sitter/tree-sitter
    License: MIT
  tree-sitter-bash 0.25.1
    Source: https://github.com/tree-sitter/tree-sitter-bash
    License: MIT
  tree-sitter-c 0.24.2
    Source: https://github.com/tree-sitter/tree-sitter-c
    License: MIT
  tree-sitter-cpp 0.23.4
    Source: https://github.com/tree-sitter/tree-sitter-cpp
    License: MIT
  tree-sitter-go 0.25.0
    Source: https://github.com/tree-sitter/tree-sitter-go
    License: MIT
  tree-sitter-java 0.23.5
    Source: https://github.com/tree-sitter/tree-sitter-java
    License: MIT
  tree-sitter-javascript 0.25.0
    Source: https://github.com/tree-sitter/tree-sitter-javascript
    License: MIT
  tree-sitter-language 0.1.7
    Source: https://github.com/tree-sitter/tree-sitter
    License: MIT
  tree-sitter-python 0.25.0
    Source: https://github.com/tree-sitter/tree-sitter-python
    License: MIT
  tree-sitter-rust 0.24.2
    Source: https://github.com/tree-sitter/tree-sitter-rust
    License: MIT
  tree-sitter-typescript 0.23.2
    Source: https://github.com/tree-sitter/tree-sitter-typescript
    License: MIT
  tree_magic_mini 3.2.2
    Source: https://github.com/mbrubeck/tree_magic/
    License: MIT
  try-lock 0.2.5
    Source: https://github.com/seanmonstar/try-lock
    License: MIT
  tui-shimmer 0.1.3
    Source: https://github.com/vinhnx/tui-shimmer
    License: MIT
  tui-widget-list 0.15.2
    Source: https://github.com/preiter93/tui-widget-list
    License: MIT
  twox-hash 2.1.2
    Source: https://github.com/shepmaster/twox-hash
    License: MIT
  uds_windows 1.2.1
    Source: https://github.com/haraldh/rust_uds_windows
    License: MIT
  unit-prefix 0.5.2
    Source: https://codeberg.org/commons-rs/unit-prefix
    License: MIT
  urlencoding 2.1.3
    Source: https://github.com/kornelski/rust_urlencoding
    License: MIT
  uuid-simd 0.8.0
    Source: https://github.com/Nugine/simd
    License: MIT
  valuable 0.1.1
    Source: https://github.com/tokio-rs/valuable
    License: MIT
  vsimd 0.8.0
    Source: https://github.com/Nugine/simd
    License: MIT
  vt100 0.16.2
    Source: https://github.com/doy/vt100-rust
    License: MIT
  vtparse 0.6.2
    Source: https://github.com/wez/wezterm
    License: MIT
  want 0.3.1
    Source: https://github.com/seanmonstar/want
    License: MIT
  wayland-backend 0.3.15
    Source: https://github.com/smithay/wayland-rs
    License: MIT
  wayland-client 0.31.14
    Source: https://github.com/smithay/wayland-rs
    License: MIT
  wayland-protocols 0.32.13
    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-scanner 0.31.10
    Source: https://github.com/smithay/wayland-rs
    License: MIT
  wayland-sys 0.31.11
    Source: https://github.com/smithay/wayland-rs
    License: MIT
  wezterm-blob-leases 0.1.1
    Source: https://github.com/wezterm/wezterm
    License: MIT
  wezterm-color-types 0.3.0
    Source: https://github.com/wez/wezterm
    License: MIT
  wezterm-dynamic 0.2.1
    Source: https://github.com/wezterm/wezterm
    License: MIT
  wezterm-dynamic-derive 0.1.1
    Source: https://github.com/wezterm/wezterm
    License: MIT
  wezterm-input-types 0.1.0
    Source: https://github.com/wez/wezterm
    License: MIT
  which 8.0.4
    Source: https://github.com/harryfei/which-rs.git
    License: MIT
  winnow 1.0.3
    Source: https://github.com/winnow-rs/winnow
    License: MIT
  winreg 0.10.1
    Source: https://github.com/gentoo90/winreg-rs
    License: MIT
  y4m 0.8.0
    Source: https://github.com/image-rs/y4m.git
    License: MIT
  zbus 5.16.0
    Source: https://github.com/z-galaxy/zbus/
    License: MIT
  zbus_macros 5.16.0
    Source: https://github.com/z-galaxy/zbus/
    License: MIT
  zbus_names 4.3.2
    Source: https://github.com/z-galaxy/zbus/
    License: MIT
  zip 8.6.0
    Source: https://github.com/zip-rs/zip2
    License: MIT
  zmij 1.0.21
    Source: https://github.com/dtolnay/zmij
    License: MIT
  zvariant 5.12.0
    Source: https://github.com/z-galaxy/zbus/
    License: MIT
  zvariant_derive 5.12.0
    Source: https://github.com/z-galaxy/zbus/
    License: MIT
  zvariant_utils 3.4.0
    Source: https://github.com/z-galaxy/zbus/
    License: MIT

--------------------------------------------------------------------------------
Apache-2.0 (21 crates)
--------------------------------------------------------------------------------
  agent-client-protocol 1.0.1
    Source: https://github.com/agentclientprotocol/rust-sdk
    License: Apache-2.0
  agent-client-protocol-derive 1.0.1
    Source: https://github.com/agentclientprotocol/rust-sdk
    License: Apache-2.0
  agent-client-protocol-schema 1.1.0
    Source: https://github.com/agentclientprotocol/agent-client-protocol
    License: Apache-2.0
  approx 0.5.1
    Source: https://github.com/brendanzab/approx
    License: Apache-2.0
  ciborium 0.2.2
    Source: https://github.com/enarx/ciborium
    License: 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
  gethostname 1.1.0
    Source: https://codeberg.org/swsnr/gethostname.rs.git
    License: Apache-2.0
  insta 1.48.0
    Source: https://github.com/mitsuhiko/insta
    License: Apache-2.0
  normalize-line-endings 0.3.0
    Source: https://github.com/derekdreery/normalize-line-endings
    License: Apache-2.0
  openai-harmony 0.0.8
    Source: https://github.com/openai/harmony
    License: Apache-2.0
  openssl 0.10.81
    Source: https://github.com/rust-openssl/rust-openssl
    License: Apache-2.0
  opentelemetry 0.32.0
    Source: https://github.com/open-telemetry/opentelemetry-rust/tree/main/opentelemetry
    License: Apache-2.0
  rmcp 2.0.0
    Source: https://github.com/modelcontextprotocol/rust-sdk/
    License: Apache-2.0
  rmcp-macros 2.0.0
    Source: https://github.com/modelcontextprotocol/rust-sdk/
    License: Apache-2.0
  self-replace 1.5.0
    Source: https://github.com/mitsuhiko/self-replace
    License: Apache-2.0
  similar 2.7.0
    Source: https://github.com/mitsuhiko/similar
    License: Apache-2.0
  sync_wrapper 1.0.2
    Source: https://github.com/Actyx/sync_wrapper
    License: Apache-2.0
  unicode-general-category 1.1.0
    Source: https://github.com/yeslogic/unicode-general-category
    License: Apache-2.0
  unicode-linebreak 0.1.5
    Source: https://github.com/axelf4/unicode-linebreak
    License: Apache-2.0
  zopfli 0.8.3
    Source: https://github.com/zopfli-rs/zopfli
    License: Apache-2.0

--------------------------------------------------------------------------------
Unicode-3.0 (18 crates)
--------------------------------------------------------------------------------
  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 0.8.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
  zerofrom 0.1.8
    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
  zerotrie 0.2.4
    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
  zerovec-derive 0.11.3
    Source: https://github.com/unicode-org/icu4x
    License: Unicode-3.0

--------------------------------------------------------------------------------
Apache-2.0 OR MIT OR Zlib (14 crates)
--------------------------------------------------------------------------------
  bytemuck 1.25.0
    Source: https://github.com/Lokathor/bytemuck
    License: Apache-2.0 OR MIT OR Zlib
  dispatch2 0.3.1
    Source: https://github.com/madsmtm/objc2
    License: Apache-2.0 OR MIT OR Zlib
  lru-slab 0.1.2
    Source: https://github.com/Ralith/lru-slab
    License: Apache-2.0 OR MIT OR Zlib
  miniz_oxide 0.8.9
    Source: https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide
    License: Apache-2.0 OR MIT OR Zlib
  objc2-app-kit 0.3.2
    Source: https://github.com/madsmtm/objc2
    License: Apache-2.0 OR MIT OR Zlib
  objc2-core-foundation 0.3.2
    Source: https://github.com/madsmtm/objc2
    License: Apache-2.0 OR MIT OR Zlib
  objc2-core-graphics 0.3.2
    Source: https://github.com/madsmtm/objc2
    License: Apache-2.0 OR MIT OR Zlib
  objc2-io-kit 0.3.2
    Source: https://github.com/madsmtm/objc2
    License: Apache-2.0 OR MIT OR Zlib
  objc2-io-surface 0.3.2
    Source: https://github.com/madsmtm/objc2
    License: Apache-2.0 OR MIT OR Zlib
  tinyvec 1.11.0
    Source: https://github.com/Lokathor/tinyvec
    License: Apache-2.0 OR MIT OR Zlib
  tinyvec_macros 0.1.1
    Source: https://github.com/Soveu/tinyvec_macros
    License: Apache-2.0 OR MIT OR Zlib
  zune-core 0.5.1
    Source: https://github.com/etemesi254/zune-image
    License: Apache-2.0 OR MIT OR Zlib
  zune-inflate 0.2.54
    Source: N/A
    License: Apache-2.0 OR MIT OR Zlib
  zune-jpeg 0.5.15
    Source: https://github.com/etemesi254/zune-image/tree/dev/crates/zune-jpeg
    License: Apache-2.0 OR MIT OR Zlib

--------------------------------------------------------------------------------
MIT OR Unlicense (9 crates)
--------------------------------------------------------------------------------
  aho-corasick 1.1.4
    Source: https://github.com/BurntSushi/aho-corasick
    License: MIT OR Unlicense
  byteorder 1.5.0
    Source: https://github.com/BurntSushi/byteorder
    License: MIT OR Unlicense
  byteorder-lite 0.1.0
    Source: https://github.com/image-rs/byteorder-lite
    License: MIT OR Unlicense
  globset 0.4.18
    Source: https://github.com/BurntSushi/ripgrep/tree/master/crates/globset
    License: MIT OR Unlicense
  ignore 0.4.27
    Source: https://github.com/BurntSushi/ripgrep/tree/master/crates/ignore
    License: MIT OR Unlicense
  memchr 2.8.2
    Source: https://github.com/BurntSushi/memchr
    License: MIT OR Unlicense
  same-file 1.0.6
    Source: https://github.com/BurntSushi/same-file
    License: MIT OR Unlicense
  walkdir 2.5.0
    Source: https://github.com/BurntSushi/walkdir
    License: MIT OR Unlicense
  winapi-util 0.1.11
    Source: https://github.com/BurntSushi/winapi-util
    License: MIT OR Unlicense

--------------------------------------------------------------------------------
BSD-3-Clause (7 crates)
--------------------------------------------------------------------------------
  avif-serialize 0.8.9
    Source: https://github.com/kornelski/avif-serialize
    License: BSD-3-Clause
  curve25519-dalek 4.1.3
    Source: https://github.com/dalek-cryptography/curve25519-dalek/tree/main/curve25519-dalek
    License: BSD-3-Clause
  ed25519-dalek 2.2.0
    Source: https://github.com/dalek-cryptography/curve25519-dalek/tree/main/ed25519-dalek
    License: BSD-3-Clause
  exr 1.74.0
    Source: https://github.com/johannesvollmer/exrs
    License: BSD-3-Clause
  lebe 0.5.3
    Source: https://github.com/johannesvollmer/lebe
    License: BSD-3-Clause
  ravif 0.13.0
    Source: https://github.com/kornelski/cavif-rs
    License: BSD-3-Clause
  subtle 2.6.1
    Source: https://github.com/dalek-cryptography/subtle
    License: BSD-3-Clause

--------------------------------------------------------------------------------
Apache-2.0 OR Apache-2.0 WITH LLVM-exception OR MIT (6 crates)
--------------------------------------------------------------------------------
  linux-raw-sys 0.12.1
    Source: https://github.com/sunfishcode/linux-raw-sys
    License: Apache-2.0 OR Apache-2.0 WITH LLVM-exception OR MIT
  rustix 1.1.4
    Source: https://github.com/bytecodealliance/rustix
    License: Apache-2.0 OR Apache-2.0 WITH LLVM-exception OR MIT
  wasi 0.11.1+wasi-snapshot-preview1
    Source: https://github.com/bytecodealliance/wasi
    License: Apache-2.0 OR Apache-2.0 WITH LLVM-exception OR MIT
  wasip2 1.0.4+wasi-0.2.12
    Source: https://github.com/bytecodealliance/wasi-rs
    License: Apache-2.0 OR Apache-2.0 WITH LLVM-exception OR MIT
  wit-bindgen 0.57.1
    Source: https://github.com/bytecodealliance/wit-bindgen
    License: Apache-2.0 OR Apache-2.0 WITH LLVM-exception OR MIT
  zipsign-api 0.1.5
    Source: https://github.com/Kijewski/zipsign
    License: Apache-2.0 OR Apache-2.0 WITH LLVM-exception OR MIT

--------------------------------------------------------------------------------
ISC (5 crates)
--------------------------------------------------------------------------------
  inotify 0.11.2
    Source: https://github.com/hannobraun/inotify-rs
    License: ISC
  inotify-sys 0.1.5
    Source: https://github.com/hannobraun/inotify-sys
    License: ISC
  libloading 0.9.0
    Source: https://github.com/nagisa/rust_libloading/
    License: ISC
  rustls-webpki 0.103.13
    Source: https://github.com/rustls/webpki
    License: ISC
  untrusted 0.9.0
    Source: https://github.com/briansmith/untrusted
    License: ISC

--------------------------------------------------------------------------------
Apache-2.0 OR ISC OR MIT (3 crates)
--------------------------------------------------------------------------------
  hyper-rustls 0.27.9
    Source: https://github.com/rustls/hyper-rustls
    License: Apache-2.0 OR ISC OR MIT
  rustls 0.23.41
    Source: https://github.com/rustls/rustls
    License: Apache-2.0 OR ISC OR MIT
  rustls-native-certs 0.8.4
    Source: https://github.com/rustls/rustls-native-certs
    License: Apache-2.0 OR ISC OR MIT

--------------------------------------------------------------------------------
BSD-2-Clause (3 crates)
--------------------------------------------------------------------------------
  av1-grain 0.2.5
    Source: https://github.com/rust-av/av1-grain
    License: BSD-2-Clause
  rav1e 0.8.1
    Source: https://github.com/xiph/rav1e/
    License: BSD-2-Clause
  v_frame 0.3.9
    Source: https://github.com/rust-av/v_frame
    License: BSD-2-Clause

--------------------------------------------------------------------------------
CDLA-Permissive-2.0 (3 crates)
--------------------------------------------------------------------------------
  webpki-root-certs 1.0.8
    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.8
    Source: https://github.com/rustls/webpki-roots
    License: CDLA-Permissive-2.0

--------------------------------------------------------------------------------
MPL-2.0 (3 crates)
--------------------------------------------------------------------------------
  colored 3.1.1
    Source: https://github.com/mackwic/colored
    License: MPL-2.0
  nucleo-matcher 0.3.1
    Source: https://github.com/helix-editor/nucleo
    License: MPL-2.0
  option-ext 0.2.0
    Source: https://github.com/soc/option-ext.git
    License: MPL-2.0

--------------------------------------------------------------------------------
Zlib (3 crates)
--------------------------------------------------------------------------------
  foldhash 0.1.5
    Source: https://github.com/orlp/foldhash
    License: Zlib
  foldhash 0.2.0
    Source: https://github.com/orlp/foldhash
    License: Zlib
  zlib-rs 0.6.5
    Source: https://github.com/trifectatechfoundation/zlib-rs
    License: Zlib

--------------------------------------------------------------------------------
Apache-2.0 OR BSD-2-Clause OR MIT (2 crates)
--------------------------------------------------------------------------------
  zerocopy 0.8.52
    Source: https://github.com/google/zerocopy
    License: Apache-2.0 OR BSD-2-Clause OR MIT
  zerocopy-derive 0.8.52
    Source: https://github.com/google/zerocopy
    License: Apache-2.0 OR BSD-2-Clause OR MIT

--------------------------------------------------------------------------------
Apache-2.0 OR BSD-3-Clause (2 crates)
--------------------------------------------------------------------------------
  moxcms 0.8.1
    Source: https://github.com/awxkee/moxcms.git
    License: Apache-2.0 OR BSD-3-Clause
  pxfm 0.1.29
    Source: https://github.com/awxkee/pxfm
    License: Apache-2.0 OR BSD-3-Clause

--------------------------------------------------------------------------------
Apache-2.0 OR LGPL-2.1-or-later OR MIT (2 crates)
--------------------------------------------------------------------------------
  r-efi 5.3.0
    Source: https://github.com/r-efi/r-efi
    License: Apache-2.0 OR LGPL-2.1-or-later OR MIT
  r-efi 6.0.0
    Source: https://github.com/r-efi/r-efi
    License: Apache-2.0 OR LGPL-2.1-or-later OR MIT

--------------------------------------------------------------------------------
BSL-1.0 (2 crates)
--------------------------------------------------------------------------------
  clipboard-win 5.4.1
    Source: https://github.com/DoumanAsh/clipboard-win
    License: BSL-1.0
  error-code 3.3.2
    Source: https://github.com/DoumanAsh/error-code
    License: BSL-1.0

--------------------------------------------------------------------------------
(Apache-2.0 OR ISC OR MIT) AND (Apache-2.0 OR ISC OR MIT-0) AND (Apache-2.0 OR ISC) AND Apache-2.0 AND BSD-3-Clause AND ISC AND MIT (1 crates)
--------------------------------------------------------------------------------
  aws-lc-sys 0.42.0
    Source: https://github.com/aws/aws-lc-rs
    License: (Apache-2.0 OR ISC OR MIT) AND (Apache-2.0 OR ISC OR MIT-0) AND (Apache-2.0 OR ISC) AND Apache-2.0 AND BSD-3-Clause AND ISC AND MIT

--------------------------------------------------------------------------------
(Apache-2.0 OR ISC) AND ISC (1 crates)
--------------------------------------------------------------------------------
  aws-lc-rs 1.17.1
    Source: https://github.com/aws/aws-lc-rs
    License: (Apache-2.0 OR ISC) AND ISC

--------------------------------------------------------------------------------
(Apache-2.0 OR MIT) AND BSD-3-Clause (1 crates)
--------------------------------------------------------------------------------
  encoding_rs 0.8.35
    Source: https://github.com/hsivonen/encoding_rs
    License: (Apache-2.0 OR MIT) AND BSD-3-Clause

--------------------------------------------------------------------------------
(Apache-2.0 OR MIT) AND NCSA (1 crates)
--------------------------------------------------------------------------------
  libfuzzer-sys 0.4.13
    Source: https://github.com/rust-fuzz/libfuzzer
    License: (Apache-2.0 OR MIT) AND NCSA

--------------------------------------------------------------------------------
(Apache-2.0 OR MIT) AND Unicode-3.0 (1 crates)
--------------------------------------------------------------------------------
  unicode-ident 1.0.24
    Source: https://github.com/dtolnay/unicode-ident
    License: (Apache-2.0 OR MIT) AND Unicode-3.0

--------------------------------------------------------------------------------
(Apache-2.0 OR MIT) AND Unicode-DFS-2016 (1 crates)
--------------------------------------------------------------------------------
  finl_unicode 1.4.0
    Source: https://github.com/dahosek/finl_unicode
    License: (Apache-2.0 OR MIT) AND Unicode-DFS-2016

--------------------------------------------------------------------------------
0BSD OR Apache-2.0 OR MIT (1 crates)
--------------------------------------------------------------------------------
  adler2 2.0.1
    Source: https://github.com/oyvindln/adler2
    License: 0BSD OR Apache-2.0 OR MIT

--------------------------------------------------------------------------------
Apache-2.0 AND ISC (1 crates)
--------------------------------------------------------------------------------
  ring 0.17.14
    Source: https://github.com/briansmith/ring
    License: Apache-2.0 AND ISC

--------------------------------------------------------------------------------
Apache-2.0 OR BSD-1-Clause OR MIT (1 crates)
--------------------------------------------------------------------------------
  fiat-crypto 0.2.9
    Source: https://github.com/mit-plv/fiat-crypto
    License: Apache-2.0 OR BSD-1-Clause OR MIT

--------------------------------------------------------------------------------
Apache-2.0 OR BSD-2-Clause (1 crates)
--------------------------------------------------------------------------------
  serial2 0.2.37
    Source: https://github.com/de-vri-es/serial2-rs
    License: Apache-2.0 OR BSD-2-Clause

--------------------------------------------------------------------------------
Apache-2.0 OR BSL-1.0 (1 crates)
--------------------------------------------------------------------------------
  ryu 1.0.23
    Source: https://github.com/dtolnay/ryu
    License: Apache-2.0 OR BSL-1.0

--------------------------------------------------------------------------------
Apache-2.0 OR CC0-1.0 (1 crates)
--------------------------------------------------------------------------------
  imgref 1.12.2
    Source: https://github.com/kornelski/imgref
    License: Apache-2.0 OR CC0-1.0

--------------------------------------------------------------------------------
Apache-2.0 OR CC0-1.0 OR MIT (1 crates)
--------------------------------------------------------------------------------
  fast-srgb8 1.0.0
    Source: https://github.com/thomcc/fast-srgb8
    License: Apache-2.0 OR CC0-1.0 OR MIT

--------------------------------------------------------------------------------
Apache-2.0 OR CC0-1.0 OR MIT-0 (1 crates)
--------------------------------------------------------------------------------
  dunce 1.0.5
    Source: https://gitlab.com/kornelski/dunce
    License: Apache-2.0 OR CC0-1.0 OR MIT-0

--------------------------------------------------------------------------------
BSD-3-Clause AND MIT (1 crates)
--------------------------------------------------------------------------------
  matchit 0.8.4
    Source: https://github.com/ibraheemdev/matchit
    License: BSD-3-Clause AND MIT

--------------------------------------------------------------------------------
CC0-1.0 (1 crates)
--------------------------------------------------------------------------------
  notify 8.2.0
    Source: https://github.com/notify-rs/notify.git
    License: CC0-1.0

--------------------------------------------------------------------------------
MIT AND Unicode-DFS-2016 (1 crates)
--------------------------------------------------------------------------------
  wezterm-bidi 0.2.3
    Source: https://github.com/wez/wezterm
    License: MIT AND Unicode-DFS-2016

--------------------------------------------------------------------------------
MIT OR MPL-2.0 (1 crates)
--------------------------------------------------------------------------------
  termina 0.3.3
    Source: https://github.com/helix-editor/termina
    License: MIT OR MPL-2.0

--------------------------------------------------------------------------------
MIT-0 (1 crates)
--------------------------------------------------------------------------------
  borrow-or-share 0.2.4
    Source: https://github.com/yescallop/borrow-or-share
    License: MIT-0

--------------------------------------------------------------------------------
WTFPL (1 crates)
--------------------------------------------------------------------------------
  terminfo 0.9.0
    Source: https://github.com/meh/rust-terminfo
    License: WTFPL

================================================================================
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