aardvark-bio 0.10.5

Aardvark - A tool for sniffing out the differences in vari-Ants
Documentation
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
[
  {
    "name": "aardvark-bio",
    "version": "0.10.5",
    "authors": "holtjma <mholt@pacificbiosciences.com>",
    "repository": "https://github.com/PacificBiosciences/aardvark",
    "license": "MIT",
    "license_file": null,
    "description": "Aardvark - A tool for sniffing out the differences in vari-Ants"
  },
  {
    "name": "adler2",
    "version": "2.0.0",
    "authors": "Jonas Schievink <jonasschievink@gmail.com>|oyvindln <oyvindln@users.noreply.github.com>",
    "repository": "https://github.com/oyvindln/adler2",
    "license": "0BSD OR Apache-2.0 OR MIT",
    "license_file": null,
    "description": "A simple clean-room implementation of the Adler-32 checksum"
  },
  {
    "name": "aho-corasick",
    "version": "1.1.3",
    "authors": "Andrew Gallant <jamslam@gmail.com>",
    "repository": "https://github.com/BurntSushi/aho-corasick",
    "license": "MIT OR Unlicense",
    "license_file": null,
    "description": "Fast multiple substring searching."
  },
  {
    "name": "android-tzdata",
    "version": "0.1.1",
    "authors": "RumovZ",
    "repository": "https://github.com/RumovZ/android-tzdata",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Parser for the Android-specific tzdata file"
  },
  {
    "name": "android_system_properties",
    "version": "0.1.5",
    "authors": "Nicolas Silva <nical@fastmail.com>",
    "repository": "https://github.com/nical/android_system_properties",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Minimal Android system properties wrapper"
  },
  {
    "name": "anstream",
    "version": "0.6.18",
    "authors": null,
    "repository": "https://github.com/rust-cli/anstyle.git",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "A simple cross platform library for writing colored text to a terminal."
  },
  {
    "name": "anstyle",
    "version": "1.0.10",
    "authors": null,
    "repository": "https://github.com/rust-cli/anstyle.git",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "ANSI text styling"
  },
  {
    "name": "anstyle-parse",
    "version": "0.2.6",
    "authors": null,
    "repository": "https://github.com/rust-cli/anstyle.git",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Parse ANSI Style Escapes"
  },
  {
    "name": "anstyle-query",
    "version": "1.1.2",
    "authors": null,
    "repository": "https://github.com/rust-cli/anstyle.git",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Look up colored console capabilities"
  },
  {
    "name": "anstyle-wincon",
    "version": "3.0.7",
    "authors": null,
    "repository": "https://github.com/rust-cli/anstyle.git",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Styling legacy Windows terminals"
  },
  {
    "name": "anyhow",
    "version": "1.0.102",
    "authors": "David Tolnay <dtolnay@gmail.com>",
    "repository": "https://github.com/dtolnay/anyhow",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Flexible concrete Error type built on std::error::Error"
  },
  {
    "name": "approx",
    "version": "0.5.1",
    "authors": "Brendan Zabarauskas <bjzaba@yahoo.com.au>",
    "repository": "https://github.com/brendanzab/approx",
    "license": "Apache-2.0",
    "license_file": null,
    "description": "Approximate floating point equality comparisons and assertions."
  },
  {
    "name": "approx_eq",
    "version": "0.1.8",
    "authors": "Jeff Shen <jshen2014@hotmail.com>",
    "repository": "https://github.com/al-jshen/approx_eq",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "A macro for comparing equality of two values up to an arbitrary error in the *relative* difference"
  },
  {
    "name": "autocfg",
    "version": "1.4.0",
    "authors": "Josh Stone <cuviper@gmail.com>",
    "repository": "https://github.com/cuviper/autocfg",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Automatic cfg for Rust compiler features"
  },
  {
    "name": "bio",
    "version": "1.6.0",
    "authors": "Johannes Köster <johannes.koester@tu-dortmund.de>",
    "repository": "https://github.com/rust-bio/rust-bio",
    "license": "MIT",
    "license_file": null,
    "description": "A bioinformatics library for Rust. This library provides implementations of many algorithms and data structures that are useful for bioinformatics, but also in other fields."
  },
  {
    "name": "bio-types",
    "version": "1.0.4",
    "authors": "Johannes Köster <johannes.koester@tu-dortmund.de>",
    "repository": "https://github.com/rust-bio/rust-bio-types",
    "license": "MIT",
    "license_file": "LICENSE.md",
    "description": "A collection of common biomedical types for use in rust-bio and rust-htslib."
  },
  {
    "name": "bit-set",
    "version": "0.5.3",
    "authors": "Alexis Beingessner <a.beingessner@gmail.com>",
    "repository": "https://github.com/contain-rs/bit-set",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "A set of bits"
  },
  {
    "name": "bit-vec",
    "version": "0.6.3",
    "authors": "Alexis Beingessner <a.beingessner@gmail.com>",
    "repository": "https://github.com/contain-rs/bit-vec",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "A vector of bits"
  },
  {
    "name": "bit-vec",
    "version": "0.8.0",
    "authors": "Alexis Beingessner <a.beingessner@gmail.com>",
    "repository": "https://github.com/contain-rs/bit-vec",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "A vector of bits"
  },
  {
    "name": "bstr",
    "version": "1.11.3",
    "authors": "Andrew Gallant <jamslam@gmail.com>",
    "repository": "https://github.com/BurntSushi/bstr",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "A string type that is not required to be valid UTF-8."
  },
  {
    "name": "bumpalo",
    "version": "3.17.0",
    "authors": "Nick Fitzgerald <fitzgen@gmail.com>",
    "repository": "https://github.com/fitzgen/bumpalo",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "A fast bump allocation arena for Rust."
  },
  {
    "name": "bv",
    "version": "0.11.1",
    "authors": "Jesse A. Tov <jesse.tov@gmail.com>",
    "repository": "https://github.com/tov/bv-rs",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Bit-vectors and bit-slices"
  },
  {
    "name": "bytecount",
    "version": "0.6.8",
    "authors": "Andre Bogus <bogusandre@gmail.de>|Joshua Landau <joshua@landau.ws>",
    "repository": "https://github.com/llogiq/bytecount",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "count occurrences of a given byte, or the number of UTF-8 code points, in a byte slice, fast"
  },
  {
    "name": "bytemuck",
    "version": "1.22.0",
    "authors": "Lokathor <zefria@gmail.com>",
    "repository": "https://github.com/Lokathor/bytemuck",
    "license": "Apache-2.0 OR MIT OR Zlib",
    "license_file": null,
    "description": "A crate for mucking around with piles of bytes."
  },
  {
    "name": "byteorder",
    "version": "1.5.0",
    "authors": "Andrew Gallant <jamslam@gmail.com>",
    "repository": "https://github.com/BurntSushi/byteorder",
    "license": "MIT OR Unlicense",
    "license_file": null,
    "description": "Library for reading/writing numbers in big-endian and little-endian."
  },
  {
    "name": "bytes",
    "version": "1.11.1",
    "authors": "Carl Lerche <me@carllerche.com>|Sean McArthur <sean@seanmonstar.com>",
    "repository": "https://github.com/tokio-rs/bytes",
    "license": "MIT",
    "license_file": null,
    "description": "Types and traits for working with bytes"
  },
  {
    "name": "cc",
    "version": "1.2.17",
    "authors": "Alex Crichton <alex@alexcrichton.com>",
    "repository": "https://github.com/rust-lang/cc-rs",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "A build-time dependency for Cargo build scripts to assist in invoking the native C compiler to compile native C code into a static archive to be linked into Rust code."
  },
  {
    "name": "cfg-if",
    "version": "1.0.0",
    "authors": "Alex Crichton <alex@alexcrichton.com>",
    "repository": "https://github.com/alexcrichton/cfg-if",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "A macro to ergonomically define an item depending on a large number of #[cfg] parameters. Structured like an if-else chain, the first matching branch is the item that gets emitted."
  },
  {
    "name": "chrono",
    "version": "0.4.40",
    "authors": null,
    "repository": "https://github.com/chronotope/chrono",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Date and time library for Rust"
  },
  {
    "name": "clap",
    "version": "4.5.35",
    "authors": null,
    "repository": "https://github.com/clap-rs/clap",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "A simple to use, efficient, and full-featured Command Line Argument Parser"
  },
  {
    "name": "clap_builder",
    "version": "4.5.35",
    "authors": null,
    "repository": "https://github.com/clap-rs/clap",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "A simple to use, efficient, and full-featured Command Line Argument Parser"
  },
  {
    "name": "clap_derive",
    "version": "4.5.32",
    "authors": null,
    "repository": "https://github.com/clap-rs/clap",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Parse command line argument by defining a struct, derive crate."
  },
  {
    "name": "clap_lex",
    "version": "0.7.4",
    "authors": null,
    "repository": "https://github.com/clap-rs/clap",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Minimal, flexible command line parser"
  },
  {
    "name": "coitrees",
    "version": "0.4.0",
    "authors": "Daniel C. Jones <djones3@fredhutch.org>",
    "repository": "https://github.com/dcjones/coitrees",
    "license": null,
    "license_file": "LICENSE",
    "description": "A very fast data structure for overlap queries on sets of intervals."
  },
  {
    "name": "colorchoice",
    "version": "1.0.3",
    "authors": null,
    "repository": "https://github.com/rust-cli/anstyle.git",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Global override of color control"
  },
  {
    "name": "console",
    "version": "0.15.11",
    "authors": "Armin Ronacher <armin.ronacher@active-4.com>",
    "repository": "https://github.com/console-rs/console",
    "license": "MIT",
    "license_file": null,
    "description": "A terminal and console abstraction for Rust"
  },
  {
    "name": "core-foundation-sys",
    "version": "0.8.7",
    "authors": "The Servo Project Developers",
    "repository": "https://github.com/servo/core-foundation-rs",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Bindings to Core Foundation for macOS"
  },
  {
    "name": "crc32fast",
    "version": "1.4.2",
    "authors": "Sam Rijs <srijs@airpost.net>|Alex Crichton <alex@alexcrichton.com>",
    "repository": "https://github.com/srijs/rust-crc32fast",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Fast, SIMD-accelerated CRC32 (IEEE) checksum computation"
  },
  {
    "name": "crossbeam-channel",
    "version": "0.5.15",
    "authors": null,
    "repository": "https://github.com/crossbeam-rs/crossbeam",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Multi-producer multi-consumer channels for message passing"
  },
  {
    "name": "crossbeam-deque",
    "version": "0.8.6",
    "authors": null,
    "repository": "https://github.com/crossbeam-rs/crossbeam",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Concurrent work-stealing deque"
  },
  {
    "name": "crossbeam-epoch",
    "version": "0.9.18",
    "authors": null,
    "repository": "https://github.com/crossbeam-rs/crossbeam",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Epoch-based garbage collection"
  },
  {
    "name": "crossbeam-utils",
    "version": "0.8.21",
    "authors": null,
    "repository": "https://github.com/crossbeam-rs/crossbeam",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Utilities for concurrent programming"
  },
  {
    "name": "csv",
    "version": "1.3.1",
    "authors": "Andrew Gallant <jamslam@gmail.com>",
    "repository": "https://github.com/BurntSushi/rust-csv",
    "license": "MIT OR Unlicense",
    "license_file": null,
    "description": "Fast CSV parsing with support for serde."
  },
  {
    "name": "csv-core",
    "version": "0.1.12",
    "authors": "Andrew Gallant <jamslam@gmail.com>",
    "repository": "https://github.com/BurntSushi/rust-csv",
    "license": "MIT OR Unlicense",
    "license_file": null,
    "description": "Bare bones CSV parsing with no_std support."
  },
  {
    "name": "custom_derive",
    "version": "0.1.7",
    "authors": "Daniel Keep <daniel.keep@gmail.com>",
    "repository": "https://github.com/DanielKeep/rust-custom-derive/tree/custom_derive-master",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "(Note: superseded by `macro-attr`) This crate provides a macro that enables the use of custom derive attributes."
  },
  {
    "name": "darling",
    "version": "0.20.11",
    "authors": "Ted Driggs <ted.driggs@outlook.com>",
    "repository": "https://github.com/TedDriggs/darling",
    "license": "MIT",
    "license_file": null,
    "description": "A proc-macro library for reading attributes into structs when implementing custom derives."
  },
  {
    "name": "darling_core",
    "version": "0.20.11",
    "authors": "Ted Driggs <ted.driggs@outlook.com>",
    "repository": "https://github.com/TedDriggs/darling",
    "license": "MIT",
    "license_file": null,
    "description": "Helper crate for proc-macro library for reading attributes into structs when implementing custom derives. Use https://crates.io/crates/darling in your code."
  },
  {
    "name": "darling_macro",
    "version": "0.20.11",
    "authors": "Ted Driggs <ted.driggs@outlook.com>",
    "repository": "https://github.com/TedDriggs/darling",
    "license": "MIT",
    "license_file": null,
    "description": "Internal support for a proc-macro library for reading attributes into structs when implementing custom derives. Use https://crates.io/crates/darling in your code."
  },
  {
    "name": "deranged",
    "version": "0.5.8",
    "authors": "Jacob Pratt <jacob@jhpratt.dev>",
    "repository": "https://github.com/jhpratt/deranged",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Ranged integers"
  },
  {
    "name": "derive-new",
    "version": "0.6.0",
    "authors": "Nick Cameron <nrc@ncameron.org>",
    "repository": "https://github.com/nrc/derive-new",
    "license": "MIT",
    "license_file": null,
    "description": "`#[derive(new)]` implements simple constructor functions for structs and enums."
  },
  {
    "name": "derive_builder",
    "version": "0.20.2",
    "authors": "Colin Kiegel <kiegel@gmx.de>|Pascal Hertleif <killercup@gmail.com>|Jan-Erik Rediger <janerik@fnordig.de>|Ted Driggs <ted.driggs@outlook.com>",
    "repository": "https://github.com/colin-kiegel/rust-derive-builder",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Rust macro to automatically implement the builder pattern for arbitrary structs."
  },
  {
    "name": "derive_builder_core",
    "version": "0.20.2",
    "authors": "Colin Kiegel <kiegel@gmx.de>|Pascal Hertleif <killercup@gmail.com>|Jan-Erik Rediger <janerik@fnordig.de>|Ted Driggs <ted.driggs@outlook.com>",
    "repository": "https://github.com/colin-kiegel/rust-derive-builder",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Internal helper library for the derive_builder crate."
  },
  {
    "name": "derive_builder_macro",
    "version": "0.20.2",
    "authors": "Colin Kiegel <kiegel@gmx.de>|Pascal Hertleif <killercup@gmail.com>|Jan-Erik Rediger <janerik@fnordig.de>|Ted Driggs <ted.driggs@outlook.com>",
    "repository": "https://github.com/colin-kiegel/rust-derive-builder",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Rust macro to automatically implement the builder pattern for arbitrary structs."
  },
  {
    "name": "editdistancek",
    "version": "1.0.2",
    "authors": "Nikolai Karpov <kimaska@gmail.com>",
    "repository": "https://github.com/nkkarpov/editdistancek",
    "license": "MIT",
    "license_file": null,
    "description": "Fast algorithm for computing edit distance"
  },
  {
    "name": "either",
    "version": "1.15.0",
    "authors": "bluss",
    "repository": "https://github.com/rayon-rs/either",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "The enum `Either` with variants `Left` and `Right` is a general purpose sum type with two cases."
  },
  {
    "name": "encode_unicode",
    "version": "1.0.0",
    "authors": "Torbjørn Birch Moltu <t.b.moltu@lyse.net>",
    "repository": "https://github.com/tormol/encode_unicode",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "UTF-8 and UTF-16 character types, iterators and related methods for char, u8 and u16."
  },
  {
    "name": "enum-map",
    "version": "2.7.3",
    "authors": "Kamila Borowska <kamila@borowska.pw>",
    "repository": "https://codeberg.org/xfix/enum-map",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "A map with C-like enum keys represented internally as an array"
  },
  {
    "name": "enum-map-derive",
    "version": "0.17.0",
    "authors": "Kamila Borowska <kamila@borowska.pw>",
    "repository": "https://codeberg.org/xfix/enum-map",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Macros 1.1 implementation of #[derive(Enum)]"
  },
  {
    "name": "env_filter",
    "version": "0.1.3",
    "authors": null,
    "repository": "https://github.com/rust-cli/env_logger",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Filter log events using environment variables"
  },
  {
    "name": "env_logger",
    "version": "0.11.8",
    "authors": null,
    "repository": "https://github.com/rust-cli/env_logger",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "A logging implementation for `log` which is configured via an environment variable."
  },
  {
    "name": "equivalent",
    "version": "1.0.2",
    "authors": null,
    "repository": "https://github.com/indexmap-rs/equivalent",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Traits for key comparison in maps."
  },
  {
    "name": "exitcode",
    "version": "1.1.2",
    "authors": "Ben Wilber <benwilber@gmail.com>",
    "repository": "https://github.com/benwilber/exitcode",
    "license": "Apache-2.0",
    "license_file": null,
    "description": "Preferred system exit codes as defined by sysexits.h"
  },
  {
    "name": "feature-probe",
    "version": "0.1.1",
    "authors": "Jesse A. Tov <jesse.tov@gmail.com>",
    "repository": "https://github.com/tov/feature-probe-rs",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Probe for rustc features from build.rs"
  },
  {
    "name": "fixedbitset",
    "version": "0.4.2",
    "authors": "bluss",
    "repository": "https://github.com/petgraph/fixedbitset",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "FixedBitSet is a simple bitset collection"
  },
  {
    "name": "flate2",
    "version": "1.1.1",
    "authors": "Alex Crichton <alex@alexcrichton.com>|Josh Triplett <josh@joshtriplett.org>",
    "repository": "https://github.com/rust-lang/flate2-rs",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "DEFLATE compression and decompression exposed as Read/BufRead/Write streams. Supports miniz_oxide and multiple zlib implementations. Supports zlib, gzip, and raw deflate streams."
  },
  {
    "name": "fnv",
    "version": "1.0.7",
    "authors": "Alex Crichton <alex@alexcrichton.com>",
    "repository": "https://github.com/servo/rust-fnv",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Fowler–Noll–Vo hash function"
  },
  {
    "name": "fxhash",
    "version": "0.2.1",
    "authors": "cbreeden <github@u.breeden.cc>",
    "repository": "https://github.com/cbreeden/fxhash",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "A fast, non-secure, hashing algorithm derived from an internal hasher used in FireFox and Rustc."
  },
  {
    "name": "getrandom",
    "version": "0.2.15",
    "authors": "The Rand Project Developers",
    "repository": "https://github.com/rust-random/getrandom",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "A small cross-platform library for retrieving random data from system source"
  },
  {
    "name": "hashbrown",
    "version": "0.15.2",
    "authors": "Amanieu d'Antras <amanieu@gmail.com>",
    "repository": "https://github.com/rust-lang/hashbrown",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "A Rust port of Google's SwissTable hash map"
  },
  {
    "name": "heck",
    "version": "0.4.1",
    "authors": "Without Boats <woboats@gmail.com>",
    "repository": "https://github.com/withoutboats/heck",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "heck is a case conversion library."
  },
  {
    "name": "heck",
    "version": "0.5.0",
    "authors": null,
    "repository": "https://github.com/withoutboats/heck",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "heck is a case conversion library."
  },
  {
    "name": "iana-time-zone",
    "version": "0.1.63",
    "authors": "Andrew Straw <strawman@astraw.com>|René Kijewski <rene.kijewski@fu-berlin.de>|Ryan Lopopolo <rjl@hyperbo.la>",
    "repository": "https://github.com/strawlab/iana-time-zone",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "get the IANA time zone for the current system"
  },
  {
    "name": "iana-time-zone-haiku",
    "version": "0.1.2",
    "authors": "René Kijewski <crates.io@k6i.de>",
    "repository": "https://github.com/strawlab/iana-time-zone",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "iana-time-zone support crate for Haiku OS"
  },
  {
    "name": "ident_case",
    "version": "1.0.1",
    "authors": "Ted Driggs <ted.driggs@outlook.com>",
    "repository": "https://github.com/TedDriggs/ident_case",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Utility for applying case rules to Rust identifiers."
  },
  {
    "name": "indexmap",
    "version": "2.9.0",
    "authors": null,
    "repository": "https://github.com/indexmap-rs/indexmap",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "A hash table with consistent order and fast iteration."
  },
  {
    "name": "indicatif",
    "version": "0.17.11",
    "authors": null,
    "repository": "https://github.com/console-rs/indicatif",
    "license": "MIT",
    "license_file": null,
    "description": "A progress bar and cli reporting library for Rust"
  },
  {
    "name": "is_terminal_polyfill",
    "version": "1.70.1",
    "authors": null,
    "repository": "https://github.com/polyfill-rs/is_terminal_polyfill",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Polyfill for `is_terminal` stdlib feature for use with older MSRVs"
  },
  {
    "name": "itertools",
    "version": "0.11.0",
    "authors": "bluss",
    "repository": "https://github.com/rust-itertools/itertools",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Extra iterator adaptors, iterator methods, free functions, and macros."
  },
  {
    "name": "itertools",
    "version": "0.14.0",
    "authors": "bluss",
    "repository": "https://github.com/rust-itertools/itertools",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Extra iterator adaptors, iterator methods, free functions, and macros."
  },
  {
    "name": "itertools-num",
    "version": "0.1.3",
    "authors": "bluss",
    "repository": "https://github.com/bluss/itertools-num",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Numerical iterator tools. Extra iterators and iterator methods and functions."
  },
  {
    "name": "itoa",
    "version": "1.0.15",
    "authors": "David Tolnay <dtolnay@gmail.com>",
    "repository": "https://github.com/dtolnay/itoa",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Fast integer primitive to string conversion"
  },
  {
    "name": "jiff",
    "version": "0.2.5",
    "authors": "Andrew Gallant <jamslam@gmail.com>",
    "repository": "https://github.com/BurntSushi/jiff",
    "license": "MIT OR Unlicense",
    "license_file": null,
    "description": "A date-time library that encourages you to jump into the pit of success.  This library is heavily inspired by the Temporal project."
  },
  {
    "name": "jiff-static",
    "version": "0.2.5",
    "authors": "Andrew Gallant <jamslam@gmail.com>",
    "repository": "https://github.com/BurntSushi/jiff",
    "license": "MIT OR Unlicense",
    "license_file": null,
    "description": "Create static TimeZone values for Jiff (useful in core-only environments)."
  },
  {
    "name": "js-sys",
    "version": "0.3.77",
    "authors": "The wasm-bindgen Developers",
    "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/js-sys",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Bindings for all JS global objects and functions in all JS environments like Node.js and browsers, built on `#[wasm_bindgen]` using the `wasm-bindgen` crate."
  },
  {
    "name": "lazy_static",
    "version": "1.5.0",
    "authors": "Marvin Löbel <loebel.marvin@gmail.com>",
    "repository": "https://github.com/rust-lang-nursery/lazy-static.rs",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "A macro for declaring lazily evaluated statics in Rust."
  },
  {
    "name": "lexical-core",
    "version": "1.0.5",
    "authors": "Alex Huszagh <ahuszagh@gmail.com>",
    "repository": "https://github.com/Alexhuszagh/rust-lexical",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Lexical, to- and from-string conversion routines."
  },
  {
    "name": "lexical-parse-float",
    "version": "1.0.5",
    "authors": "Alex Huszagh <ahuszagh@gmail.com>",
    "repository": "https://github.com/Alexhuszagh/rust-lexical",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Efficient parsing of floats from strings."
  },
  {
    "name": "lexical-parse-integer",
    "version": "1.0.5",
    "authors": "Alex Huszagh <ahuszagh@gmail.com>",
    "repository": "https://github.com/Alexhuszagh/rust-lexical",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Efficient parsing of integers from strings."
  },
  {
    "name": "lexical-util",
    "version": "1.0.6",
    "authors": "Alex Huszagh <ahuszagh@gmail.com>",
    "repository": "https://github.com/Alexhuszagh/rust-lexical",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Shared utilities for lexical creates."
  },
  {
    "name": "lexical-write-float",
    "version": "1.0.5",
    "authors": "Alex Huszagh <ahuszagh@gmail.com>",
    "repository": "https://github.com/Alexhuszagh/rust-lexical",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Efficient formatting of floats to strings."
  },
  {
    "name": "lexical-write-integer",
    "version": "1.0.5",
    "authors": "Alex Huszagh <ahuszagh@gmail.com>",
    "repository": "https://github.com/Alexhuszagh/rust-lexical",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Efficient formatting of integers to strings."
  },
  {
    "name": "libc",
    "version": "0.2.171",
    "authors": "The Rust Project Developers",
    "repository": "https://github.com/rust-lang/libc",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Raw FFI bindings to platform libraries like libc."
  },
  {
    "name": "libm",
    "version": "0.2.11",
    "authors": "Jorge Aparicio <jorge@japaric.io>",
    "repository": "https://github.com/rust-lang/libm",
    "license": "Apache-2.0) OR MIT AND (MIT",
    "license_file": null,
    "description": "libm in pure Rust"
  },
  {
    "name": "libz-rs-sys",
    "version": "0.5.0",
    "authors": null,
    "repository": "https://github.com/trifectatechfoundation/zlib-rs",
    "license": "Zlib",
    "license_file": null,
    "description": "A memory-safe zlib implementation written in rust"
  },
  {
    "name": "log",
    "version": "0.4.27",
    "authors": "The Rust Project Developers",
    "repository": "https://github.com/rust-lang/log",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "A lightweight logging facade for Rust"
  },
  {
    "name": "matrixmultiply",
    "version": "0.3.9",
    "authors": "bluss|R. Janis Goldschmidt",
    "repository": "https://github.com/bluss/matrixmultiply/",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "General matrix multiplication for f32 and f64 matrices. Operates on matrices with general layout (they can use arbitrary row and column stride). Detects and uses AVX or SSE2 on x86 platforms transparently for higher performance. Uses a microkernel strategy, so that the implementation is easy to parallelize and optimize.  Supports multithreading."
  },
  {
    "name": "memchr",
    "version": "2.7.4",
    "authors": "Andrew Gallant <jamslam@gmail.com>|bluss",
    "repository": "https://github.com/BurntSushi/memchr",
    "license": "MIT OR Unlicense",
    "license_file": null,
    "description": "Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for 1, 2 or 3 byte search and single substring search."
  },
  {
    "name": "miniz_oxide",
    "version": "0.8.5",
    "authors": "Frommi <daniil.liferenko@gmail.com>|oyvindln <oyvindln@users.noreply.github.com>|Rich Geldreich richgel99@gmail.com",
    "repository": "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide",
    "license": "Apache-2.0 OR MIT OR Zlib",
    "license_file": null,
    "description": "DEFLATE compression and decompression library rewritten in Rust based on miniz"
  },
  {
    "name": "multimap",
    "version": "0.9.1",
    "authors": "Håvar Nøvik <havar.novik@gmail.com>",
    "repository": "https://github.com/havarnov/multimap",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "A multimap implementation."
  },
  {
    "name": "nalgebra",
    "version": "0.29.0",
    "authors": "Sébastien Crozet <developer@crozet.re>",
    "repository": "https://github.com/dimforge/nalgebra",
    "license": "BSD-3-Clause",
    "license_file": null,
    "description": "General-purpose linear algebra library with transformations and statically-sized or dynamically-sized matrices."
  },
  {
    "name": "nalgebra-macros",
    "version": "0.1.0",
    "authors": "Andreas Longva|Sébastien Crozet <developer@crozet.re>",
    "repository": "https://github.com/dimforge/nalgebra",
    "license": "Apache-2.0",
    "license_file": null,
    "description": "Procedural macros for nalgebra"
  },
  {
    "name": "ndarray",
    "version": "0.15.6",
    "authors": "Ulrik Sverdrup \"bluss\"|Jim Turner",
    "repository": "https://github.com/rust-ndarray/ndarray",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "An n-dimensional array for general elements and for numerics. Lightweight array views and slicing; views support chunking and splitting."
  },
  {
    "name": "newtype_derive",
    "version": "0.1.6",
    "authors": "Daniel Keep <daniel.keep@gmail.com>",
    "repository": "https://github.com/DanielKeep/rust-custom-derive",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "This crate provides macros for deriving common traits for newtype structures."
  },
  {
    "name": "noodles",
    "version": "0.100.0",
    "authors": "Michael Macias <zaeleus@gmail.com>",
    "repository": "https://github.com/zaeleus/noodles",
    "license": "MIT",
    "license_file": null,
    "description": "Bioinformatics I/O libraries"
  },
  {
    "name": "noodles-bcf",
    "version": "0.77.0",
    "authors": "Michael Macias <zaeleus@gmail.com>",
    "repository": "https://github.com/zaeleus/noodles",
    "license": "MIT",
    "license_file": null,
    "description": "Binary Call Format (BCF) reader and writer"
  },
  {
    "name": "noodles-bed",
    "version": "0.27.0",
    "authors": "Michael Macias <zaeleus@gmail.com>",
    "repository": "https://github.com/zaeleus/noodles",
    "license": "MIT",
    "license_file": null,
    "description": "BED (Browser Extensible Data) reader"
  },
  {
    "name": "noodles-bgzf",
    "version": "0.42.0",
    "authors": "Michael Macias <zaeleus@gmail.com>",
    "repository": "https://github.com/zaeleus/noodles",
    "license": "MIT",
    "license_file": null,
    "description": "Blocked gzip format (BGZF) reader and writer"
  },
  {
    "name": "noodles-core",
    "version": "0.18.0",
    "authors": "Michael Macias <zaeleus@gmail.com>",
    "repository": "https://github.com/zaeleus/noodles",
    "license": "MIT",
    "license_file": null,
    "description": "Shared utilities when working with noodles"
  },
  {
    "name": "noodles-csi",
    "version": "0.50.0",
    "authors": "Michael Macias <zaeleus@gmail.com>",
    "repository": "https://github.com/zaeleus/noodles",
    "license": "MIT",
    "license_file": null,
    "description": "Coordinate-sorted index (CSI) format reader and writer"
  },
  {
    "name": "noodles-tabix",
    "version": "0.56.0",
    "authors": "Michael Macias <zaeleus@gmail.com>",
    "repository": "https://github.com/zaeleus/noodles",
    "license": "MIT",
    "license_file": null,
    "description": "Tabix (TBI) format reader and writer"
  },
  {
    "name": "noodles-util",
    "version": "0.69.0",
    "authors": "Michael Macias <zaeleus@gmail.com>",
    "repository": "https://github.com/zaeleus/noodles",
    "license": "MIT",
    "license_file": null,
    "description": "noodles support utilities"
  },
  {
    "name": "noodles-vcf",
    "version": "0.80.0",
    "authors": "Michael Macias <zaeleus@gmail.com>",
    "repository": "https://github.com/zaeleus/noodles",
    "license": "MIT",
    "license_file": null,
    "description": "Variant Call Format (VCF) reader and writer"
  },
  {
    "name": "num-complex",
    "version": "0.4.6",
    "authors": "The Rust Project Developers",
    "repository": "https://github.com/rust-num/num-complex",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Complex numbers implementation for Rust"
  },
  {
    "name": "num-conv",
    "version": "0.2.1",
    "authors": "Jacob Pratt <jacob@jhpratt.dev>",
    "repository": "https://github.com/jhpratt/num-conv",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "`num_conv` is a crate to convert between integer types without using `as` casts. This provides better certainty when refactoring, makes the exact behavior of code more explicit, and allows using turbofish syntax."
  },
  {
    "name": "num-integer",
    "version": "0.1.46",
    "authors": "The Rust Project Developers",
    "repository": "https://github.com/rust-num/num-integer",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Integer traits and functions"
  },
  {
    "name": "num-rational",
    "version": "0.4.2",
    "authors": "The Rust Project Developers",
    "repository": "https://github.com/rust-num/num-rational",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Rational numbers implementation for Rust"
  },
  {
    "name": "num-traits",
    "version": "0.2.19",
    "authors": "The Rust Project Developers",
    "repository": "https://github.com/rust-num/num-traits",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Numeric traits for generic mathematics"
  },
  {
    "name": "num_threads",
    "version": "0.1.7",
    "authors": "Jacob Pratt <open-source@jhpratt.dev>",
    "repository": "https://github.com/jhpratt/num_threads",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "A minimal library that determines the number of running threads for the current process."
  },
  {
    "name": "number_prefix",
    "version": "0.4.0",
    "authors": "Benjamin Sago <ogham@bsago.me>",
    "repository": "https://github.com/ogham/rust-number-prefix",
    "license": "MIT",
    "license_file": null,
    "description": "Library for numeric prefixes (kilo, giga, kibi)."
  },
  {
    "name": "once_cell",
    "version": "1.21.3",
    "authors": "Aleksey Kladov <aleksey.kladov@gmail.com>",
    "repository": "https://github.com/matklad/once_cell",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Single assignment cells and lazy values."
  },
  {
    "name": "ordered-float",
    "version": "3.9.2",
    "authors": "Jonathan Reem <jonathan.reem@gmail.com>|Matt Brubeck <mbrubeck@limpet.net>",
    "repository": "https://github.com/reem/rust-ordered-float",
    "license": "MIT",
    "license_file": null,
    "description": "Wrappers for total ordering on floats"
  },
  {
    "name": "paste",
    "version": "1.0.15",
    "authors": "David Tolnay <dtolnay@gmail.com>",
    "repository": "https://github.com/dtolnay/paste",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Macros for all your token pasting needs"
  },
  {
    "name": "percent-encoding",
    "version": "2.3.1",
    "authors": "The rust-url developers",
    "repository": "https://github.com/servo/rust-url/",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Percent encoding and decoding"
  },
  {
    "name": "petgraph",
    "version": "0.6.5",
    "authors": "bluss|mitchmindtree",
    "repository": "https://github.com/petgraph/petgraph",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Graph data structure library. Provides graph types and graph algorithms."
  },
  {
    "name": "portable-atomic",
    "version": "1.11.0",
    "authors": null,
    "repository": "https://github.com/taiki-e/portable-atomic",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Portable atomic types including support for 128-bit atomics, atomic float, etc."
  },
  {
    "name": "portable-atomic-util",
    "version": "0.2.4",
    "authors": null,
    "repository": "https://github.com/taiki-e/portable-atomic",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Synchronization primitives built with portable-atomic."
  },
  {
    "name": "powerfmt",
    "version": "0.2.0",
    "authors": "Jacob Pratt <jacob@jhpratt.dev>",
    "repository": "https://github.com/jhpratt/powerfmt",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "`powerfmt` is a library that provides utilities for formatting values. This crate makes it     significantly easier to support filling to a minimum width with alignment, avoid heap     allocation, and avoid repetitive calculations."
  },
  {
    "name": "ppv-lite86",
    "version": "0.2.21",
    "authors": "The CryptoCorrosion Contributors",
    "repository": "https://github.com/cryptocorrosion/cryptocorrosion",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Cross-platform cryptography-oriented low-level SIMD library."
  },
  {
    "name": "priority-queue",
    "version": "2.3.1",
    "authors": "Gianmarco Garrisi <gianmarcogarrisi@tutanota.com>",
    "repository": "https://github.com/garro95/priority-queue",
    "license": "LGPL-3.0-or-later OR MPL-2.0",
    "license_file": null,
    "description": "A Priority Queue implemented as a heap with a function to efficiently change the priority of an item."
  },
  {
    "name": "proc-macro2",
    "version": "1.0.94",
    "authors": "David Tolnay <dtolnay@gmail.com>|Alex Crichton <alex@alexcrichton.com>",
    "repository": "https://github.com/dtolnay/proc-macro2",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "A substitute implementation of the compiler's `proc_macro` API to decouple token-based libraries from the procedural macro use case."
  },
  {
    "name": "quote",
    "version": "1.0.40",
    "authors": "David Tolnay <dtolnay@gmail.com>",
    "repository": "https://github.com/dtolnay/quote",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Quasi-quoting macro quote!(...)"
  },
  {
    "name": "rand",
    "version": "0.8.5",
    "authors": "The Rand Project Developers|The Rust Project Developers",
    "repository": "https://github.com/rust-random/rand",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Random number generators and other randomness functionality."
  },
  {
    "name": "rand_chacha",
    "version": "0.3.1",
    "authors": "The Rand Project Developers|The Rust Project Developers|The CryptoCorrosion Contributors",
    "repository": "https://github.com/rust-random/rand",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "ChaCha random number generator"
  },
  {
    "name": "rand_core",
    "version": "0.6.4",
    "authors": "The Rand Project Developers|The Rust Project Developers",
    "repository": "https://github.com/rust-random/rand",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Core random number generator traits and tools for implementation."
  },
  {
    "name": "rand_distr",
    "version": "0.4.3",
    "authors": "The Rand Project Developers",
    "repository": "https://github.com/rust-random/rand",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Sampling from random number distributions"
  },
  {
    "name": "rawpointer",
    "version": "0.2.1",
    "authors": "bluss",
    "repository": "https://github.com/bluss/rawpointer/",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Extra methods for raw pointers and `NonNull<T>`.  For example `.post_inc()` and `.pre_dec()` (c.f. `ptr++` and `--ptr`), `offset` and `add` for `NonNull<T>`, and the function `ptrdistance`."
  },
  {
    "name": "rayon",
    "version": "1.10.0",
    "authors": "Niko Matsakis <niko@alum.mit.edu>|Josh Stone <cuviper@gmail.com>",
    "repository": "https://github.com/rayon-rs/rayon",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Simple work-stealing parallelism for Rust"
  },
  {
    "name": "rayon-core",
    "version": "1.12.1",
    "authors": "Niko Matsakis <niko@alum.mit.edu>|Josh Stone <cuviper@gmail.com>",
    "repository": "https://github.com/rayon-rs/rayon",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Core APIs for Rayon"
  },
  {
    "name": "regex",
    "version": "1.11.1",
    "authors": "The Rust Project Developers|Andrew Gallant <jamslam@gmail.com>",
    "repository": "https://github.com/rust-lang/regex",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "An implementation of regular expressions for Rust. This implementation uses finite automata and guarantees linear time matching on all inputs."
  },
  {
    "name": "regex-automata",
    "version": "0.4.9",
    "authors": "The Rust Project Developers|Andrew Gallant <jamslam@gmail.com>",
    "repository": "https://github.com/rust-lang/regex/tree/master/regex-automata",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Automata construction and matching using regular expressions."
  },
  {
    "name": "regex-syntax",
    "version": "0.8.5",
    "authors": "The Rust Project Developers|Andrew Gallant <jamslam@gmail.com>",
    "repository": "https://github.com/rust-lang/regex/tree/master/regex-syntax",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "A regular expression parser."
  },
  {
    "name": "rust-lib-reference-genome",
    "version": "0.2.1",
    "authors": "holtjma <mholt@pacificbiosciences.com>",
    "repository": "https://github.com/holtjma/rust-lib-reference-genome",
    "license": "BSD-3-Clause",
    "license_file": null,
    "description": "Reference genome library for Rust"
  },
  {
    "name": "rustc-hash",
    "version": "1.1.0",
    "authors": "The Rust Project Developers",
    "repository": "https://github.com/rust-lang-nursery/rustc-hash",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "speed, non-cryptographic hash used in rustc"
  },
  {
    "name": "rustc-hash",
    "version": "2.1.1",
    "authors": "The Rust Project Developers",
    "repository": "https://github.com/rust-lang/rustc-hash",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "A speedy, non-cryptographic hashing algorithm used by rustc"
  },
  {
    "name": "rustc_version",
    "version": "0.1.7",
    "authors": "Marvin Löbel <loebel.marvin@gmail.com>",
    "repository": "https://github.com/Kimundi/rustc-version-rs",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "A library for querying the version of a installed rustc compiler"
  },
  {
    "name": "rustversion",
    "version": "1.0.22",
    "authors": "David Tolnay <dtolnay@gmail.com>",
    "repository": "https://github.com/dtolnay/rustversion",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Conditional compilation according to rustc compiler version"
  },
  {
    "name": "ryu",
    "version": "1.0.20",
    "authors": "David Tolnay <dtolnay@gmail.com>",
    "repository": "https://github.com/dtolnay/ryu",
    "license": "Apache-2.0 OR BSL-1.0",
    "license_file": null,
    "description": "Fast floating point to string conversion"
  },
  {
    "name": "safe_arch",
    "version": "0.7.4",
    "authors": "Lokathor <zefria@gmail.com>",
    "repository": "https://github.com/Lokathor/safe_arch",
    "license": "Apache-2.0 OR MIT OR Zlib",
    "license_file": null,
    "description": "Crate that exposes `core::arch` safely via `#[cfg()]`."
  },
  {
    "name": "semver",
    "version": "0.1.20",
    "authors": "The Rust Project Developers",
    "repository": "https://github.com/rust-lang/semver",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Semantic version parsing and comparison."
  },
  {
    "name": "serde",
    "version": "1.0.228",
    "authors": "Erick Tryzelaar <erick.tryzelaar@gmail.com>|David Tolnay <dtolnay@gmail.com>",
    "repository": "https://github.com/serde-rs/serde",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "A generic serialization/deserialization framework"
  },
  {
    "name": "serde_core",
    "version": "1.0.228",
    "authors": "Erick Tryzelaar <erick.tryzelaar@gmail.com>|David Tolnay <dtolnay@gmail.com>",
    "repository": "https://github.com/serde-rs/serde",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Serde traits only, with no support for derive -- use the `serde` crate instead"
  },
  {
    "name": "serde_derive",
    "version": "1.0.228",
    "authors": "Erick Tryzelaar <erick.tryzelaar@gmail.com>|David Tolnay <dtolnay@gmail.com>",
    "repository": "https://github.com/serde-rs/serde",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Macros 1.1 implementation of #[derive(Serialize, Deserialize)]"
  },
  {
    "name": "serde_json",
    "version": "1.0.140",
    "authors": "Erick Tryzelaar <erick.tryzelaar@gmail.com>|David Tolnay <dtolnay@gmail.com>",
    "repository": "https://github.com/serde-rs/json",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "A JSON serialization file format"
  },
  {
    "name": "shlex",
    "version": "1.3.0",
    "authors": "comex <comexk@gmail.com>|Fenhl <fenhl@fenhl.net>|Adrian Taylor <adetaylor@chromium.org>|Alex Touchet <alextouchet@outlook.com>|Daniel Parks <dp+git@oxidized.org>|Garrett Berg <googberg@gmail.com>",
    "repository": "https://github.com/comex/rust-shlex",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Split a string into shell words, like Python's shlex."
  },
  {
    "name": "simba",
    "version": "0.6.0",
    "authors": "sebcrozet <developer@crozet.re>",
    "repository": "https://github.com/dimforge/simba",
    "license": "Apache-2.0",
    "license_file": null,
    "description": "SIMD algebra for Rust"
  },
  {
    "name": "simple-error",
    "version": "0.3.1",
    "authors": null,
    "repository": "https://github.com/WiSaGaN/simple-error.git",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "A simple error type backed by a string"
  },
  {
    "name": "static_assertions",
    "version": "1.1.0",
    "authors": "Nikolai Vazquez",
    "repository": "https://github.com/nvzqz/static-assertions-rs",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Compile-time assertions to ensure that invariants are met."
  },
  {
    "name": "statrs",
    "version": "0.16.1",
    "authors": "Michael Ma",
    "repository": "https://github.com/statrs-dev/statrs",
    "license": "MIT",
    "license_file": null,
    "description": "Statistical computing library for Rust"
  },
  {
    "name": "strsim",
    "version": "0.11.1",
    "authors": "Danny Guo <danny@dannyguo.com>|maxbachmann <oss@maxbachmann.de>",
    "repository": "https://github.com/rapidfuzz/strsim-rs",
    "license": "MIT",
    "license_file": null,
    "description": "Implementations of string similarity metrics. Includes Hamming, Levenshtein, OSA, Damerau-Levenshtein, Jaro, Jaro-Winkler, and Sørensen-Dice."
  },
  {
    "name": "strum",
    "version": "0.25.0",
    "authors": "Peter Glotfelty <peter.glotfelty@microsoft.com>",
    "repository": "https://github.com/Peternator7/strum",
    "license": "MIT",
    "license_file": null,
    "description": "Helpful macros for working with enums and strings"
  },
  {
    "name": "strum",
    "version": "0.27.1",
    "authors": "Peter Glotfelty <peter.glotfelty@microsoft.com>",
    "repository": "https://github.com/Peternator7/strum",
    "license": "MIT",
    "license_file": null,
    "description": "Helpful macros for working with enums and strings"
  },
  {
    "name": "strum_macros",
    "version": "0.25.3",
    "authors": "Peter Glotfelty <peter.glotfelty@microsoft.com>",
    "repository": "https://github.com/Peternator7/strum",
    "license": "MIT",
    "license_file": null,
    "description": "Helpful macros for working with enums and strings"
  },
  {
    "name": "strum_macros",
    "version": "0.26.4",
    "authors": "Peter Glotfelty <peter.glotfelty@microsoft.com>",
    "repository": "https://github.com/Peternator7/strum",
    "license": "MIT",
    "license_file": null,
    "description": "Helpful macros for working with enums and strings"
  },
  {
    "name": "strum_macros",
    "version": "0.27.1",
    "authors": "Peter Glotfelty <peter.glotfelty@microsoft.com>",
    "repository": "https://github.com/Peternator7/strum",
    "license": "MIT",
    "license_file": null,
    "description": "Helpful macros for working with enums and strings"
  },
  {
    "name": "syn",
    "version": "1.0.109",
    "authors": "David Tolnay <dtolnay@gmail.com>",
    "repository": "https://github.com/dtolnay/syn",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Parser for Rust source code"
  },
  {
    "name": "syn",
    "version": "2.0.100",
    "authors": "David Tolnay <dtolnay@gmail.com>",
    "repository": "https://github.com/dtolnay/syn",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Parser for Rust source code"
  },
  {
    "name": "thiserror",
    "version": "1.0.69",
    "authors": "David Tolnay <dtolnay@gmail.com>",
    "repository": "https://github.com/dtolnay/thiserror",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "derive(Error)"
  },
  {
    "name": "thiserror",
    "version": "2.0.12",
    "authors": "David Tolnay <dtolnay@gmail.com>",
    "repository": "https://github.com/dtolnay/thiserror",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "derive(Error)"
  },
  {
    "name": "thiserror-impl",
    "version": "1.0.69",
    "authors": "David Tolnay <dtolnay@gmail.com>",
    "repository": "https://github.com/dtolnay/thiserror",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Implementation detail of the `thiserror` crate"
  },
  {
    "name": "thiserror-impl",
    "version": "2.0.12",
    "authors": "David Tolnay <dtolnay@gmail.com>",
    "repository": "https://github.com/dtolnay/thiserror",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Implementation detail of the `thiserror` crate"
  },
  {
    "name": "time",
    "version": "0.3.47",
    "authors": "Jacob Pratt <open-source@jhpratt.dev>|Time contributors",
    "repository": "https://github.com/time-rs/time",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Date and time library. Fully interoperable with the standard library. Mostly compatible with #![no_std]."
  },
  {
    "name": "time-core",
    "version": "0.1.8",
    "authors": "Jacob Pratt <open-source@jhpratt.dev>|Time contributors",
    "repository": "https://github.com/time-rs/time",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "This crate is an implementation detail and should not be relied upon directly."
  },
  {
    "name": "time-macros",
    "version": "0.2.27",
    "authors": "Jacob Pratt <open-source@jhpratt.dev>|Time contributors",
    "repository": "https://github.com/time-rs/time",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Procedural macros for the time crate.     This crate is an implementation detail and should not be relied upon directly."
  },
  {
    "name": "triple_accel",
    "version": "0.4.0",
    "authors": "c0deb0t <daniel.liu02@gmail.com>",
    "repository": "https://github.com/Daniel-Liu-c0deb0t/triple_accel",
    "license": "MIT",
    "license_file": null,
    "description": "Rust edit distance routines accelerated using SIMD. Supports fast Hamming, Levenshtein, restricted Damerau-Levenshtein, etc. distance calculations and string search."
  },
  {
    "name": "typenum",
    "version": "1.18.0",
    "authors": "Paho Lurie-Gregg <paho@paholg.com>|Andre Bogus <bogusandre@gmail.com>",
    "repository": "https://github.com/paholg/typenum",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Typenum is a Rust library for type-level numbers evaluated at     compile time. It currently supports bits, unsigned integers, and signed     integers. It also provides a type-level array of type-level numbers, but its     implementation is incomplete."
  },
  {
    "name": "unicode-ident",
    "version": "1.0.18",
    "authors": "David Tolnay <dtolnay@gmail.com>",
    "repository": "https://github.com/dtolnay/unicode-ident",
    "license": "(MIT OR Apache-2.0) AND Unicode-3.0",
    "license_file": null,
    "description": "Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31"
  },
  {
    "name": "unicode-width",
    "version": "0.2.0",
    "authors": "kwantam <kwantam@gmail.com>|Manish Goregaokar <manishsmail@gmail.com>",
    "repository": "https://github.com/unicode-rs/unicode-width",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Determine displayed width of `char` and `str` types according to Unicode Standard Annex #11 rules."
  },
  {
    "name": "utf8parse",
    "version": "0.2.2",
    "authors": "Joe Wilm <joe@jwilm.com>|Christian Duerr <contact@christianduerr.com>",
    "repository": "https://github.com/alacritty/vte",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Table-driven UTF-8 parser"
  },
  {
    "name": "vec_map",
    "version": "0.8.2",
    "authors": "Alex Crichton <alex@alexcrichton.com>|Jorge Aparicio <japaricious@gmail.com>|Alexis Beingessner <a.beingessner@gmail.com>|Brian Anderson <>|tbu- <>|Manish Goregaokar <>|Aaron Turon <aturon@mozilla.com>|Adolfo Ochagavía <>|Niko Matsakis <>|Steven Fackler <>|Chase Southwood <csouth3@illinois.edu>|Eduard Burtescu <>|Florian Wilkens <>|Félix Raimundo <>|Tibor Benke <>|Markus Siemens <markus@m-siemens.de>|Josh Branchaud <jbranchaud@gmail.com>|Huon Wilson <dbau.pp@gmail.com>|Corey Farwell <coref@rwell.org>|Aaron Liblong <>|Nick Cameron <nrc@ncameron.org>|Patrick Walton <pcwalton@mimiga.net>|Felix S Klock II <>|Andrew Paseltiner <apaseltiner@gmail.com>|Sean McArthur <sean.monstar@gmail.com>|Vadim Petrochenkov <>",
    "repository": "https://github.com/contain-rs/vec-map",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "A simple map based on a vector for small integer keys"
  },
  {
    "name": "vergen",
    "version": "9.1.0",
    "authors": "Jason Ozias <jason.g.ozias@gmail.com>",
    "repository": "https://github.com/rustyhorde/vergen",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Generate 'cargo:rustc-env' instructions via 'build.rs' for use in your code via the 'env!' macro"
  },
  {
    "name": "vergen-gitcl",
    "version": "9.1.0",
    "authors": "Jason Ozias <jason.g.ozias@gmail.com>",
    "repository": "https://github.com/rustyhorde/vergen",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Generate 'cargo:rustc-env' instructions via 'build.rs' for use in your code via the 'env!' macro"
  },
  {
    "name": "vergen-lib",
    "version": "9.1.0",
    "authors": "Jason Ozias <jason.g.ozias@gmail.com>",
    "repository": "https://github.com/rustyhorde/vergen",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Common code used to support the vergen libraries"
  },
  {
    "name": "wasi",
    "version": "0.11.0+wasi-snapshot-preview1",
    "authors": "The Cranelift Project Developers",
    "repository": "https://github.com/bytecodealliance/wasi",
    "license": "Apache-2.0 OR Apache-2.0 WITH LLVM-exception OR MIT",
    "license_file": null,
    "description": "Experimental WASI API bindings for Rust"
  },
  {
    "name": "wasm-bindgen",
    "version": "0.2.100",
    "authors": "The wasm-bindgen Developers",
    "repository": "https://github.com/rustwasm/wasm-bindgen",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Easy support for interacting between JS and Rust."
  },
  {
    "name": "wasm-bindgen-backend",
    "version": "0.2.100",
    "authors": "The wasm-bindgen Developers",
    "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Backend code generation of the wasm-bindgen tool"
  },
  {
    "name": "wasm-bindgen-macro",
    "version": "0.2.100",
    "authors": "The wasm-bindgen Developers",
    "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Definition of the `#[wasm_bindgen]` attribute, an internal dependency"
  },
  {
    "name": "wasm-bindgen-macro-support",
    "version": "0.2.100",
    "authors": "The wasm-bindgen Developers",
    "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro-support",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "The part of the implementation of the `#[wasm_bindgen]` attribute that is not in the shared backend crate"
  },
  {
    "name": "wasm-bindgen-shared",
    "version": "0.2.100",
    "authors": "The wasm-bindgen Developers",
    "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/shared",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Shared support between wasm-bindgen and wasm-bindgen cli, an internal dependency."
  },
  {
    "name": "web-time",
    "version": "1.1.0",
    "authors": null,
    "repository": "https://github.com/daxpedda/web-time",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Drop-in replacement for std::time for Wasm in browsers"
  },
  {
    "name": "wide",
    "version": "0.7.32",
    "authors": "Lokathor <zefria@gmail.com>",
    "repository": "https://github.com/Lokathor/wide",
    "license": "Apache-2.0 OR MIT OR Zlib",
    "license_file": null,
    "description": "A crate to help you go wide."
  },
  {
    "name": "windows-core",
    "version": "0.61.0",
    "authors": "Microsoft",
    "repository": "https://github.com/microsoft/windows-rs",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Core type support for COM and Windows"
  },
  {
    "name": "windows-implement",
    "version": "0.60.0",
    "authors": "Microsoft",
    "repository": "https://github.com/microsoft/windows-rs",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "The implement macro for the windows crate"
  },
  {
    "name": "windows-interface",
    "version": "0.59.1",
    "authors": "Microsoft",
    "repository": "https://github.com/microsoft/windows-rs",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "The interface macro for the windows crate"
  },
  {
    "name": "windows-link",
    "version": "0.1.1",
    "authors": "Microsoft",
    "repository": "https://github.com/microsoft/windows-rs",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Linking for Windows"
  },
  {
    "name": "windows-result",
    "version": "0.3.2",
    "authors": "Microsoft",
    "repository": "https://github.com/microsoft/windows-rs",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Windows error handling"
  },
  {
    "name": "windows-strings",
    "version": "0.4.0",
    "authors": "Microsoft",
    "repository": "https://github.com/microsoft/windows-rs",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Windows string types"
  },
  {
    "name": "windows-sys",
    "version": "0.59.0",
    "authors": "Microsoft",
    "repository": "https://github.com/microsoft/windows-rs",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Rust for Windows"
  },
  {
    "name": "windows-targets",
    "version": "0.52.6",
    "authors": "Microsoft",
    "repository": "https://github.com/microsoft/windows-rs",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Import libs for Windows"
  },
  {
    "name": "windows_aarch64_gnullvm",
    "version": "0.52.6",
    "authors": "Microsoft",
    "repository": "https://github.com/microsoft/windows-rs",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Import lib for Windows"
  },
  {
    "name": "windows_aarch64_msvc",
    "version": "0.52.6",
    "authors": "Microsoft",
    "repository": "https://github.com/microsoft/windows-rs",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Import lib for Windows"
  },
  {
    "name": "windows_i686_gnu",
    "version": "0.52.6",
    "authors": "Microsoft",
    "repository": "https://github.com/microsoft/windows-rs",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Import lib for Windows"
  },
  {
    "name": "windows_i686_gnullvm",
    "version": "0.52.6",
    "authors": "Microsoft",
    "repository": "https://github.com/microsoft/windows-rs",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Import lib for Windows"
  },
  {
    "name": "windows_i686_msvc",
    "version": "0.52.6",
    "authors": "Microsoft",
    "repository": "https://github.com/microsoft/windows-rs",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Import lib for Windows"
  },
  {
    "name": "windows_x86_64_gnu",
    "version": "0.52.6",
    "authors": "Microsoft",
    "repository": "https://github.com/microsoft/windows-rs",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Import lib for Windows"
  },
  {
    "name": "windows_x86_64_gnullvm",
    "version": "0.52.6",
    "authors": "Microsoft",
    "repository": "https://github.com/microsoft/windows-rs",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Import lib for Windows"
  },
  {
    "name": "windows_x86_64_msvc",
    "version": "0.52.6",
    "authors": "Microsoft",
    "repository": "https://github.com/microsoft/windows-rs",
    "license": "Apache-2.0 OR MIT",
    "license_file": null,
    "description": "Import lib for Windows"
  },
  {
    "name": "zerocopy",
    "version": "0.8.24",
    "authors": "Joshua Liebow-Feeser <joshlf@google.com>|Jack Wrenn <jswrenn@amazon.com>",
    "repository": "https://github.com/google/zerocopy",
    "license": "Apache-2.0 OR BSD-2-Clause OR MIT",
    "license_file": null,
    "description": "Zerocopy makes zero-cost memory manipulation effortless. We write \"unsafe\" so you don't have to."
  },
  {
    "name": "zerocopy-derive",
    "version": "0.8.24",
    "authors": "Joshua Liebow-Feeser <joshlf@google.com>|Jack Wrenn <jswrenn@amazon.com>",
    "repository": "https://github.com/google/zerocopy",
    "license": "Apache-2.0 OR BSD-2-Clause OR MIT",
    "license_file": null,
    "description": "Custom derive for traits from the zerocopy crate"
  },
  {
    "name": "zlib-rs",
    "version": "0.5.0",
    "authors": null,
    "repository": "https://github.com/trifectatechfoundation/zlib-rs",
    "license": "Zlib",
    "license_file": null,
    "description": "A memory-safe zlib implementation written in rust"
  }
]