-
Notifications
You must be signed in to change notification settings - Fork 0
/
licenses.json
1442 lines (1442 loc) · 50.3 KB
/
licenses.json
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
[
{
"name": "ab_glyph",
"version": "0.2.28",
"authors": "Alex Butler <[email protected]>",
"repository": "https://github.com/alexheretic/ab-glyph",
"license": "Apache-2.0",
"license_file": null,
"description": "API for loading, scaling, positioning and rasterizing OpenType font glyphs."
},
{
"name": "ab_glyph_rasterizer",
"version": "0.1.8",
"authors": "Alex Butler <[email protected]>",
"repository": "https://github.com/alexheretic/ab-glyph",
"license": "Apache-2.0",
"license_file": null,
"description": "Coverage rasterization for lines, quadratic & cubic beziers"
},
{
"name": "adler",
"version": "1.0.2",
"authors": "Jonas Schievink <[email protected]>",
"repository": "https://github.com/jonas-schievink/adler.git",
"license": "0BSD OR Apache-2.0 OR MIT",
"license_file": null,
"description": "A simple clean-room implementation of the Adler-32 checksum"
},
{
"name": "ahash",
"version": "0.8.11",
"authors": "Tom Kaitchuck <[email protected]>",
"repository": "https://github.com/tkaitchuck/ahash",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "A non-cryptographic hash function using AES-NI for high performance"
},
{
"name": "allocator-api2",
"version": "0.2.18",
"authors": "Zakarum <[email protected]>",
"repository": "https://github.com/zakarumych/allocator-api2",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Mirror of Rust's allocator API"
},
{
"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 <[email protected]>",
"repository": "https://github.com/nical/android_system_properties",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Minimal Android system properties wrapper"
},
{
"name": "approx",
"version": "0.5.1",
"authors": "Brendan Zabarauskas <[email protected]>",
"repository": "https://github.com/brendanzab/approx",
"license": "Apache-2.0",
"license_file": null,
"description": "Approximate floating point equality comparisons and assertions."
},
{
"name": "arbitrary",
"version": "1.3.2",
"authors": "The Rust-Fuzz Project Developers|Nick Fitzgerald <[email protected]>|Manish Goregaokar <[email protected]>|Simonas Kazlauskas <[email protected]>|Brian L. Troutwine <[email protected]>|Corey Farwell <[email protected]>",
"repository": "https://github.com/rust-fuzz/arbitrary/",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "The trait for generating structured data from unstructured data"
},
{
"name": "base64",
"version": "0.22.1",
"authors": "Marshall Pierce <[email protected]>",
"repository": "https://github.com/marshallpierce/rust-base64",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "encodes and decodes base64 as bytes or utf8"
},
{
"name": "bit_field",
"version": "0.10.2",
"authors": "Philipp Oppermann <[email protected]>",
"repository": "https://github.com/phil-opp/rust-bit-field",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Simple bit field trait providing get_bit, get_bits, set_bit, and set_bits methods for Rust's integral types."
},
{
"name": "bitflags",
"version": "1.3.2",
"authors": "The Rust Project Developers",
"repository": "https://github.com/bitflags/bitflags",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "A macro to generate structures which behave like bitflags."
},
{
"name": "bstr",
"version": "1.9.1",
"authors": "Andrew Gallant <[email protected]>",
"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.16.0",
"authors": "Nick Fitzgerald <[email protected]>",
"repository": "https://github.com/fitzgen/bumpalo",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "A fast bump allocation arena for Rust."
},
{
"name": "bytemuck",
"version": "1.16.1",
"authors": "Lokathor <[email protected]>",
"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 <[email protected]>",
"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": "cfg-if",
"version": "0.1.10",
"authors": "Alex Crichton <[email protected]>",
"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": "cfg-if",
"version": "1.0.0",
"authors": "Alex Crichton <[email protected]>",
"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": "chardetng",
"version": "0.1.17",
"authors": "Henri Sivonen <[email protected]>",
"repository": "https://github.com/hsivonen/chardetng",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "A character encoding detector for legacy Web content"
},
{
"name": "chrono",
"version": "0.4.38",
"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": "color_quant",
"version": "1.1.0",
"authors": "nwin <[email protected]>",
"repository": "https://github.com/image-rs/color_quant.git",
"license": "MIT",
"license_file": null,
"description": "Color quantization library to reduce n colors to 256 colors."
},
{
"name": "console_log",
"version": "1.0.0",
"authors": "Matthew Nicholson <[email protected]>",
"repository": "https://github.com/iamcodemaker/console_log",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "A logging facility that routes Rust log messages to the browser's console."
},
{
"name": "core-foundation-sys",
"version": "0.8.6",
"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 <[email protected]>|Alex Crichton <[email protected]>",
"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-deque",
"version": "0.8.5",
"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.20",
"authors": null,
"repository": "https://github.com/crossbeam-rs/crossbeam",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Utilities for concurrent programming"
},
{
"name": "crunchy",
"version": "0.2.2",
"authors": "Vurich <[email protected]>",
"repository": null,
"license": "MIT",
"license_file": null,
"description": "Crunchy unroller: deterministically unroll constant loops"
},
{
"name": "csscolorparser",
"version": "0.6.2",
"authors": "Nor Khasyatillah <[email protected]>",
"repository": "https://github.com/mazznoer/csscolorparser-rs",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "CSS color parser library"
},
{
"name": "dbase",
"version": "0.5.0",
"authors": "tmontaigu <[email protected]>",
"repository": "https://github.com/tmontaigu/dbase-rs",
"license": "MIT",
"license_file": null,
"description": "Read & Write .dbf in Rust"
},
{
"name": "deranged",
"version": "0.3.11",
"authors": "Jacob Pratt <[email protected]>",
"repository": "https://github.com/jhpratt/deranged",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Ranged integers"
},
{
"name": "derive_arbitrary",
"version": "1.3.2",
"authors": "The Rust-Fuzz Project Developers|Nick Fitzgerald <[email protected]>|Manish Goregaokar <[email protected]>|Andre Bogus <[email protected]>|Corey Farwell <[email protected]>",
"repository": "https://github.com/rust-fuzz/arbitrary",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Derives arbitrary traits"
},
{
"name": "displaydoc",
"version": "0.2.5",
"authors": "Jane Lusby <[email protected]>",
"repository": "https://github.com/yaahc/displaydoc",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "A derive macro for implementing the display Trait via a doc comment and string interpolation"
},
{
"name": "dxf",
"version": "0.5.0",
"authors": "Brett V. Forsgren <[email protected]>",
"repository": "https://github.com/ixmilia/dxf-rs",
"license": "MIT",
"license_file": null,
"description": "A rust crate for reading and writing DXF and DXB CAD files."
},
{
"name": "earcutr",
"version": "0.4.3",
"authors": null,
"repository": "https://github.com/frewsxcv/earcutr/",
"license": "ISC",
"license_file": null,
"description": "port of MapBox's earcut triangulation code to Rust language"
},
{
"name": "either",
"version": "1.13.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": "encoding_rs",
"version": "0.8.34",
"authors": "Henri Sivonen <[email protected]>",
"repository": "https://github.com/hsivonen/encoding_rs",
"license": "(Apache-2.0 OR MIT) AND BSD-3-Clause",
"license_file": null,
"description": "A Gecko-oriented implementation of the Encoding Standard"
},
{
"name": "enum_primitive",
"version": "0.1.1",
"authors": "Anders Kaseorg <[email protected]>",
"repository": "https://github.com/andersk/enum_primitive-rs.git",
"license": "MIT",
"license_file": null,
"description": "Macro to generate num::FromPrimitive instances for enum that works in Rust 1.0"
},
{
"name": "equivalent",
"version": "1.0.1",
"authors": null,
"repository": "https://github.com/cuviper/equivalent",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Traits for key comparison in maps."
},
{
"name": "exr",
"version": "1.72.0",
"authors": "johannesvollmer <[email protected]>",
"repository": "https://github.com/johannesvollmer/exrs",
"license": "BSD-3-Clause",
"license_file": null,
"description": "Read and write OpenEXR files without any unsafe code"
},
{
"name": "fdeflate",
"version": "0.3.4",
"authors": "The image-rs Developers",
"repository": "https://github.com/image-rs/fdeflate",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Fast specialized deflate implementation"
},
{
"name": "flate2",
"version": "1.0.30",
"authors": "Alex Crichton <[email protected]>|Josh Triplett <[email protected]>",
"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": "float-cmp",
"version": "0.9.0",
"authors": "Mike Dilger <[email protected]>",
"repository": "https://github.com/mikedilger/float-cmp",
"license": "MIT",
"license_file": null,
"description": "Floating point approximate comparison traits"
},
{
"name": "float_next_after",
"version": "1.0.0",
"authors": "Bronson Brown-deVost <[email protected]>",
"repository": "https://gitlab.com/bronsonbdevost/next_afterf",
"license": "MIT",
"license_file": null,
"description": "A trait for native rust f64/f32 nextafter"
},
{
"name": "flume",
"version": "0.11.0",
"authors": "Joshua Barretto <[email protected]>",
"repository": "https://github.com/zesterer/flume",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "A blazingly fast multi-producer channel"
},
{
"name": "geo",
"version": "0.28.0",
"authors": null,
"repository": "https://github.com/georust/geo",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Geospatial primitives and algorithms"
},
{
"name": "geo-types",
"version": "0.7.13",
"authors": null,
"repository": "https://github.com/georust/geo",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Geospatial primitive data types"
},
{
"name": "geographiclib-rs",
"version": "0.2.4",
"authors": null,
"repository": "https://github.com/georust/geographiclib-rs",
"license": "MIT",
"license_file": null,
"description": "A port of geographiclib in Rust."
},
{
"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": "gif",
"version": "0.13.1",
"authors": "The image-rs Developers",
"repository": "https://github.com/image-rs/image-gif",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "GIF de- and encoder"
},
{
"name": "half",
"version": "2.4.1",
"authors": "Kathryn Long <[email protected]>",
"repository": "https://github.com/starkat99/half-rs",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Half-precision floating point f16 and bf16 types for Rust implementing the IEEE 754-2008 standard binary16 and bfloat16 types."
},
{
"name": "hash32",
"version": "0.3.1",
"authors": "Jorge Aparicio <[email protected]>",
"repository": "https://github.com/japaric/hash32",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "32-bit hashing algorithms"
},
{
"name": "hashbrown",
"version": "0.14.5",
"authors": "Amanieu d'Antras <[email protected]>",
"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": "heapless",
"version": "0.8.0",
"authors": "Jorge Aparicio <[email protected]>|Per Lindgren <[email protected]>|Emil Fresk <[email protected]>",
"repository": "https://github.com/rust-embedded/heapless",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "`static` friendly data structures that don't require dynamic memory allocation"
},
{
"name": "iana-time-zone",
"version": "0.1.60",
"authors": "Andrew Straw <[email protected]>|René Kijewski <[email protected]>|Ryan Lopopolo <[email protected]>",
"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 <[email protected]>",
"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": "image",
"version": "0.24.9",
"authors": "The image-rs Developers",
"repository": "https://github.com/image-rs/image",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Imaging library. Provides basic image processing and encoders/decoders for common image formats."
},
{
"name": "indexmap",
"version": "2.2.6",
"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": "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": "itoa",
"version": "1.0.11",
"authors": "David Tolnay <[email protected]>",
"repository": "https://github.com/dtolnay/itoa",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Fast integer primitive to string conversion"
},
{
"name": "jpeg-decoder",
"version": "0.3.1",
"authors": "The image-rs Developers",
"repository": "https://github.com/image-rs/jpeg-decoder",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "JPEG decoder"
},
{
"name": "js-sys",
"version": "0.3.69",
"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 <[email protected]>",
"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": "lebe",
"version": "0.5.2",
"authors": "johannesvollmer <[email protected]>",
"repository": "https://github.com/johannesvollmer/lebe",
"license": "BSD-3-Clause",
"license_file": null,
"description": "Tiny, dead simple, high performance endianness conversions with a generic API"
},
{
"name": "libc",
"version": "0.2.155",
"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.8",
"authors": "Jorge Aparicio <[email protected]>",
"repository": "https://github.com/rust-lang/libm",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "libm in pure Rust"
},
{
"name": "linked-hash-map",
"version": "0.5.6",
"authors": "Stepan Koltsov <[email protected]>|Andrew Paseltiner <[email protected]>",
"repository": "https://github.com/contain-rs/linked-hash-map",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "A HashMap wrapper that holds key-value pairs in insertion order"
},
{
"name": "lock_api",
"version": "0.4.12",
"authors": "Amanieu d'Antras <[email protected]>",
"repository": "https://github.com/Amanieu/parking_lot",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Wrappers to create fully-featured Mutex and RwLock types. Compatible with no_std."
},
{
"name": "lockfree-object-pool",
"version": "0.1.6",
"authors": "Etienne Vaillant <[email protected]>",
"repository": "https://github.com/EVaillant/lockfree-object-pool",
"license": "BSL-1.0",
"license_file": null,
"description": "A thread-safe object pool collection with automatic return and attach/detach semantics."
},
{
"name": "log",
"version": "0.4.22",
"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": "lopdf",
"version": "0.31.0",
"authors": "Junfeng Liu <[email protected]>|Emulator <[email protected]>",
"repository": "https://github.com/J-F-Liu/lopdf.git",
"license": "MIT",
"license_file": null,
"description": "A Rust library for PDF document manipulation."
},
{
"name": "md5",
"version": "0.7.0",
"authors": "Ivan Ukhov <[email protected]>|Kamal Ahmad <[email protected]>|Konstantin Stepanov <[email protected]>|Lukas Kalbertodt <[email protected]>|Nathan Musoke <[email protected]>|Scott Mabin <[email protected]>|Tony Arcieri <[email protected]>|Wim de With <[email protected]>|Yosef Dinerstein <[email protected]>",
"repository": "https://github.com/stainless-steel/md5",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "The package provides the MD5 hash function."
},
{
"name": "memchr",
"version": "2.7.4",
"authors": "Andrew Gallant <[email protected]>|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": "memory_units",
"version": "0.4.0",
"authors": "Nick Fitzgerald <[email protected]>|Sergey Pepyakin <[email protected]>",
"repository": "https://github.com/pepyakin/memory_units",
"license": "MPL-2.0",
"license_file": null,
"description": "Safe conversions between units of memory"
},
{
"name": "miniz_oxide",
"version": "0.7.4",
"authors": "Frommi <[email protected]>|oyvindln <[email protected]>",
"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": "num",
"version": "0.4.3",
"authors": "The Rust Project Developers",
"repository": "https://github.com/rust-num/num",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "A collection of numeric types and traits for Rust, including bigint, complex, rational, range iterators, generic integers, and more!"
},
{
"name": "num-bigint",
"version": "0.4.6",
"authors": "The Rust Project Developers",
"repository": "https://github.com/rust-num/num-bigint",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Big integer implementation for Rust"
},
{
"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.1.0",
"authors": "Jacob Pratt <[email protected]>",
"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-iter",
"version": "0.1.45",
"authors": "The Rust Project Developers",
"repository": "https://github.com/rust-num/num-iter",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "External iterators for generic mathematics"
},
{
"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.1.43",
"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-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": "once_cell",
"version": "1.19.0",
"authors": "Aleksey Kladov <[email protected]>",
"repository": "https://github.com/matklad/once_cell",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Single assignment cells and lazy values."
},
{
"name": "owned_ttf_parser",
"version": "0.19.0",
"authors": "Alex Butler <[email protected]>",
"repository": "https://github.com/alexheretic/owned-ttf-parser",
"license": "Apache-2.0",
"license_file": null,
"description": "ttf-parser plus support for owned data"
},
{
"name": "owned_ttf_parser",
"version": "0.24.0",
"authors": "Alex Butler <[email protected]>",
"repository": "https://github.com/alexheretic/owned-ttf-parser",
"license": "Apache-2.0",
"license_file": null,
"description": "ttf-parser plus support for owned data"
},
{
"name": "png",
"version": "0.17.13",
"authors": "The image-rs Developers",
"repository": "https://github.com/image-rs/image-png",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "PNG decoding and encoding library in pure Rust"
},
{
"name": "polylabel-mini",
"version": "0.1.0",
"authors": "Stephan Hügel <[email protected]>|Corey Farwell <[email protected]>",
"repository": "https://github.com/fschutt/polylabel-mini",
"license": "MIT",
"license_file": null,
"description": "[Fork of polylabel-rs] A Rust implementation of the Polylabel algorithm for finding optimum polygon label positions."
},
{
"name": "pom",
"version": "3.4.0",
"authors": "Junfeng Liu <[email protected]>",
"repository": "https://github.com/J-F-Liu/pom.git",
"license": "MIT",
"license_file": null,
"description": "PEG parser combinators using operator overloading without macros."
},
{
"name": "powerfmt",
"version": "0.2.0",
"authors": "Jacob Pratt <[email protected]>",
"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": "printpdf",
"version": "0.7.0",
"authors": "Felix Schütt <[email protected]>|Julien Schminke <[email protected]",
"repository": "https://github.com/fschutt/printpdf",
"license": "MIT",
"license_file": null,
"description": "Rust library for writing PDF files"
},
{
"name": "proc-macro2",
"version": "1.0.86",
"authors": "David Tolnay <[email protected]>|Alex Crichton <[email protected]>",
"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": "proj4rs",
"version": "0.1.3",
"authors": "David Marteau <[email protected]>",
"repository": "https://github.com/3liz/proj4rs/",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Rust adaptation of Proj4"
},
{
"name": "qoi",
"version": "0.4.1",
"authors": "Ivan Smirnov <[email protected]>",
"repository": "https://github.com/aldanor/qoi-rust",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "VERY fast encoder/decoder for QOI (Quite Okay Image) format"
},
{
"name": "quadtree-f32",
"version": "0.4.1",
"authors": "Felix Schütt <[email protected]>",
"repository": "https://github.com/fschutt/quadtree-f32",
"license": "MIT",
"license_file": null,
"description": "Simple, dependency-free ID-based quadtree"
},
{
"name": "quick-xml",
"version": "0.22.0",
"authors": "Johann Tuffe <[email protected]>",
"repository": "https://github.com/tafia/quick-xml",
"license": "MIT",
"license_file": null,
"description": "High performance xml reader and writer"
},
{
"name": "quote",
"version": "1.0.36",
"authors": "David Tolnay <[email protected]>",
"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_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_xorshift",
"version": "0.3.0",
"authors": "The Rand Project Developers|The Rust Project Developers",
"repository": "https://github.com/rust-random/rngs",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Xorshift random number generator"
},
{
"name": "random_color",
"version": "0.8.0",
"authors": "Lucas Maximiliano Marino <[email protected]>",
"repository": "https://github.com/elementh/random_color.git",
"license": "MIT",
"license_file": null,
"description": "Rust crate for generating random attractive colors"
},
{
"name": "rayon",
"version": "1.10.0",
"authors": "Niko Matsakis <[email protected]>|Josh Stone <[email protected]>",
"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 <[email protected]>|Josh Stone <[email protected]>",
"repository": "https://github.com/rayon-rs/rayon",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Core APIs for Rayon"
},
{
"name": "regex-automata",
"version": "0.4.7",
"authors": "The Rust Project Developers|Andrew Gallant <[email protected]>",
"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": "robust",
"version": "1.1.0",
"authors": "The Spade Developers|The GeoRust Developers",
"repository": "https://github.com/georust/robust",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Robust adaptive floating-point predicates for computational geometry"
},
{
"name": "rstar",
"version": "0.12.0",
"authors": "Stefan Altmayer <[email protected]>|The Georust Developers <[email protected]>",
"repository": "https://github.com/georust/rstar",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "An R*-tree spatial index"
},
{
"name": "ryu",
"version": "1.0.18",
"authors": "David Tolnay <[email protected]>",
"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": "scopeguard",
"version": "1.2.0",
"authors": "bluss",
"repository": "https://github.com/bluss/scopeguard",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "A RAII scope guard that will run a given closure when it goes out of scope, even if the code between panics (assuming unwinding panic). Defines the macros `defer!`, `defer_on_unwind!`, `defer_on_success!` as shorthands for guards with one of the implemented strategies."
},
{
"name": "serde",
"version": "1.0.203",
"authors": "Erick Tryzelaar <[email protected]>|David Tolnay <[email protected]>",
"repository": "https://github.com/serde-rs/serde",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "A generic serialization/deserialization framework"
},
{
"name": "serde_derive",
"version": "1.0.203",
"authors": "Erick Tryzelaar <[email protected]>|David Tolnay <[email protected]>",
"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)]"
},