-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathlicenses.json
More file actions
2504 lines (2504 loc) · 87.8 KB
/
licenses.json
File metadata and controls
2504 lines (2504 loc) · 87.8 KB
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": "addr2line",
"version": "0.24.2",
"authors": null,
"repository": "https://github.com/gimli-rs/addr2line",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "A cross-platform symbolication library written in Rust, using `gimli`"
},
{
"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": "allocator-api2",
"version": "0.2.21",
"authors": "Zakarum <zaq.dev@icloud.com>",
"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 <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": "anyhow",
"version": "1.0.98",
"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": "atoi",
"version": "2.0.0",
"authors": "Markus Klein",
"repository": "https://github.com/pacman82/atoi-rs",
"license": "MIT",
"license_file": null,
"description": "Parse integers directly from `[u8]` slices in safe code"
},
{
"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": "backtrace",
"version": "0.3.75",
"authors": "The Rust Project Developers",
"repository": "https://github.com/rust-lang/backtrace-rs",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "A library to acquire a stack trace (backtrace) at runtime in a Rust program."
},
{
"name": "base64",
"version": "0.21.7",
"authors": "Alice Maz <alice@alicemaz.com>|Marshall Pierce <marshall@mpierce.org>",
"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": "base64",
"version": "0.22.1",
"authors": "Marshall Pierce <marshall@mpierce.org>",
"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": "base64ct",
"version": "1.7.3",
"authors": "RustCrypto Developers",
"repository": "https://github.com/RustCrypto/formats",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Pure Rust implementation of Base64 (RFC 4648) which avoids any usages of data-dependent branches/LUTs and thereby provides portable \"best effort\" constant-time operation and embedded-friendly no_std support"
},
{
"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": "bitflags",
"version": "2.9.1",
"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": "block-buffer",
"version": "0.10.4",
"authors": "RustCrypto Developers",
"repository": "https://github.com/RustCrypto/utils",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Buffer type for block processing of data"
},
{
"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": "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.10.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.25",
"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.41",
"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": "concurrent-queue",
"version": "2.5.0",
"authors": "Stjepan Glavina <stjepang@gmail.com>|Taiki Endo <te316e89@gmail.com>|John Nunley <dev@notgull.net>",
"repository": "https://github.com/smol-rs/concurrent-queue",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Concurrent multi-producer multi-consumer queue"
},
{
"name": "const-oid",
"version": "0.9.6",
"authors": "RustCrypto Developers",
"repository": "https://github.com/RustCrypto/formats/tree/master/const-oid",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Const-friendly implementation of the ISO/IEC Object Identifier (OID) standard as defined in ITU X.660, with support for BER/DER encoding/decoding as well as heapless no_std (i.e. embedded) support"
},
{
"name": "core-foundation",
"version": "0.9.4",
"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": "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": "cpufeatures",
"version": "0.2.17",
"authors": "RustCrypto Developers",
"repository": "https://github.com/RustCrypto/utils",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Lightweight runtime CPU feature detection for aarch64, loongarch64, and x86/x86_64 targets, with no_std support and support for mobile targets including Android and iOS"
},
{
"name": "crc",
"version": "3.3.0",
"authors": "Rui Hu <code@mrhooray.com>|Akhil Velagapudi <4@4khil.com>",
"repository": "https://github.com/mrhooray/crc-rs.git",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Rust implementation of CRC with support of various standards"
},
{
"name": "crc-catalog",
"version": "2.4.0",
"authors": "Akhil Velagapudi <akhilvelagapudi@gmail.com>",
"repository": "https://github.com/akhilles/crc-catalog.git",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Catalog of CRC algorithms (generated from http://reveng.sourceforge.net/crc-catalogue) expressed as simple Rust structs."
},
{
"name": "crossbeam-queue",
"version": "0.3.12",
"authors": null,
"repository": "https://github.com/crossbeam-rs/crossbeam",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Concurrent queues"
},
{
"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": "crypto-common",
"version": "0.1.6",
"authors": "RustCrypto Developers",
"repository": "https://github.com/RustCrypto/traits",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Common cryptographic traits"
},
{
"name": "der",
"version": "0.7.10",
"authors": "RustCrypto Developers",
"repository": "https://github.com/RustCrypto/formats/tree/master/der",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Pure Rust embedded-friendly implementation of the Distinguished Encoding Rules (DER) for Abstract Syntax Notation One (ASN.1) as described in ITU X.690 with full support for heapless no_std targets"
},
{
"name": "digest",
"version": "0.10.7",
"authors": "RustCrypto Developers",
"repository": "https://github.com/RustCrypto/traits",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Traits for cryptographic hash functions and message authentication codes"
},
{
"name": "displaydoc",
"version": "0.2.5",
"authors": "Jane Lusby <jlusby@yaah.dev>",
"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": "dotenvy",
"version": "0.15.7",
"authors": "Noemi Lapresta <noemi.lapresta@gmail.com>|Craig Hills <chills@gmail.com>|Mike Piccolo <mfpiccolo@gmail.com>|Alice Maz <alice@alicemaz.com>|Sean Griffin <sean@seantheprogrammer.com>|Adam Sharp <adam@sharplet.me>|Arpad Borsos <arpad.borsos@googlemail.com>|Allan Zhang <al@ayz.ai>",
"repository": "https://github.com/allan2/dotenvy",
"license": "MIT",
"license_file": null,
"description": "A well-maintained fork of the dotenv crate"
},
{
"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": "encoding_rs",
"version": "0.8.35",
"authors": "Henri Sivonen <hsivonen@hsivonen.fi>",
"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": "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": "errno",
"version": "0.3.12",
"authors": "Chris Wong <lambda.fairy@gmail.com>|Dan Gohman <dev@sunfishcode.online>",
"repository": "https://github.com/lambda-fairy/rust-errno",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Cross-platform interface to the `errno` variable."
},
{
"name": "etcetera",
"version": "0.8.0",
"authors": null,
"repository": "https://github.com/lunacookies/etcetera",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "An unopinionated library for obtaining configuration, data, cache, & other directories"
},
{
"name": "event-listener",
"version": "5.4.0",
"authors": "Stjepan Glavina <stjepang@gmail.com>|John Nunley <dev@notgull.net>",
"repository": "https://github.com/smol-rs/event-listener",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Notify async tasks or threads"
},
{
"name": "fastrand",
"version": "2.3.0",
"authors": "Stjepan Glavina <stjepang@gmail.com>",
"repository": "https://github.com/smol-rs/fastrand",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "A simple and fast random number generator"
},
{
"name": "flume",
"version": "0.11.1",
"authors": "Joshua Barretto <joshua.s.barretto@gmail.com>",
"repository": "https://github.com/zesterer/flume",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "A blazingly fast multi-producer channel"
},
{
"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": "foldhash",
"version": "0.1.5",
"authors": "Orson Peters <orsonpeters@gmail.com>",
"repository": "https://github.com/orlp/foldhash",
"license": "Zlib",
"license_file": null,
"description": "A fast, non-cryptographic, minimally DoS-resistant hashing algorithm."
},
{
"name": "foreign-types",
"version": "0.3.2",
"authors": "Steven Fackler <sfackler@gmail.com>",
"repository": "https://github.com/sfackler/foreign-types",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "A framework for Rust wrappers over C APIs"
},
{
"name": "foreign-types-shared",
"version": "0.1.1",
"authors": "Steven Fackler <sfackler@gmail.com>",
"repository": "https://github.com/sfackler/foreign-types",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "An internal crate used by foreign-types"
},
{
"name": "form_urlencoded",
"version": "1.2.1",
"authors": "The rust-url developers",
"repository": "https://github.com/servo/rust-url",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Parser and serializer for the application/x-www-form-urlencoded syntax, as used by HTML forms."
},
{
"name": "futures",
"version": "0.3.31",
"authors": null,
"repository": "https://github.com/rust-lang/futures-rs",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "An implementation of futures and streams featuring zero allocations, composability, and iterator-like interfaces."
},
{
"name": "futures-channel",
"version": "0.3.31",
"authors": null,
"repository": "https://github.com/rust-lang/futures-rs",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Channels for asynchronous communication using futures-rs."
},
{
"name": "futures-core",
"version": "0.3.31",
"authors": null,
"repository": "https://github.com/rust-lang/futures-rs",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "The core traits and types in for the `futures` library."
},
{
"name": "futures-executor",
"version": "0.3.31",
"authors": null,
"repository": "https://github.com/rust-lang/futures-rs",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Executors for asynchronous tasks based on the futures-rs library."
},
{
"name": "futures-intrusive",
"version": "0.5.0",
"authors": "Matthias Einwag <matthias.einwag@live.com>",
"repository": "https://github.com/Matthias247/futures-intrusive",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Futures based on intrusive data structures - for std and no-std environments."
},
{
"name": "futures-io",
"version": "0.3.31",
"authors": null,
"repository": "https://github.com/rust-lang/futures-rs",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "The `AsyncRead`, `AsyncWrite`, `AsyncSeek`, and `AsyncBufRead` traits for the futures-rs library."
},
{
"name": "futures-macro",
"version": "0.3.31",
"authors": null,
"repository": "https://github.com/rust-lang/futures-rs",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "The futures-rs procedural macro implementations."
},
{
"name": "futures-sink",
"version": "0.3.31",
"authors": null,
"repository": "https://github.com/rust-lang/futures-rs",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "The asynchronous `Sink` trait for the futures-rs library."
},
{
"name": "futures-task",
"version": "0.3.31",
"authors": null,
"repository": "https://github.com/rust-lang/futures-rs",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Tools for working with tasks."
},
{
"name": "futures-util",
"version": "0.3.31",
"authors": null,
"repository": "https://github.com/rust-lang/futures-rs",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Common utilities and extension traits for the futures-rs library."
},
{
"name": "generic-array",
"version": "0.14.7",
"authors": "Bartłomiej Kamiński <fizyk20@gmail.com>|Aaron Trent <novacrazy@gmail.com>",
"repository": "https://github.com/fizyk20/generic-array.git",
"license": "MIT",
"license_file": null,
"description": "Generic types implementing functionality of arrays"
},
{
"name": "getrandom",
"version": "0.2.16",
"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": "getrandom",
"version": "0.3.3",
"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": "gimli",
"version": "0.31.1",
"authors": null,
"repository": "https://github.com/gimli-rs/gimli",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "A library for reading and writing the DWARF debugging format."
},
{
"name": "h2",
"version": "0.3.26",
"authors": "Carl Lerche <me@carllerche.com>|Sean McArthur <sean@seanmonstar.com>",
"repository": "https://github.com/hyperium/h2",
"license": "MIT",
"license_file": null,
"description": "An HTTP/2 client and server"
},
{
"name": "hashbrown",
"version": "0.15.3",
"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": "hashlink",
"version": "0.10.0",
"authors": "kyren <kerriganw@gmail.com>",
"repository": "https://github.com/kyren/hashlink",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "HashMap-like containers that hold their key-value pairs in a user controllable order"
},
{
"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": "hex",
"version": "0.4.3",
"authors": "KokaKiwi <kokakiwi@kokakiwi.net>",
"repository": "https://github.com/KokaKiwi/rust-hex",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Encoding and decoding data into/from hexadecimal representation."
},
{
"name": "hkdf",
"version": "0.12.4",
"authors": "RustCrypto Developers",
"repository": "https://github.com/RustCrypto/KDFs/",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "HMAC-based Extract-and-Expand Key Derivation Function (HKDF)"
},
{
"name": "hmac",
"version": "0.12.1",
"authors": "RustCrypto Developers",
"repository": "https://github.com/RustCrypto/MACs",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Generic implementation of Hash-based Message Authentication Code (HMAC)"
},
{
"name": "home",
"version": "0.5.11",
"authors": "Brian Anderson <andersrb@gmail.com>",
"repository": "https://github.com/rust-lang/cargo",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Shared definitions of home directories."
},
{
"name": "http",
"version": "0.2.12",
"authors": "Alex Crichton <alex@alexcrichton.com>|Carl Lerche <me@carllerche.com>|Sean McArthur <sean@seanmonstar.com>",
"repository": "https://github.com/hyperium/http",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "A set of types for representing HTTP requests and responses."
},
{
"name": "http-body",
"version": "0.4.6",
"authors": "Carl Lerche <me@carllerche.com>|Lucio Franco <luciofranco14@gmail.com>|Sean McArthur <sean@seanmonstar.com>",
"repository": "https://github.com/hyperium/http-body",
"license": "MIT",
"license_file": null,
"description": "Trait representing an asynchronous, streaming, HTTP request or response body."
},
{
"name": "httparse",
"version": "1.10.1",
"authors": "Sean McArthur <sean@seanmonstar.com>",
"repository": "https://github.com/seanmonstar/httparse",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "A tiny, safe, speedy, zero-copy HTTP/1.x parser."
},
{
"name": "httpdate",
"version": "1.0.3",
"authors": "Pyfisch <pyfisch@posteo.org>",
"repository": "https://github.com/pyfisch/httpdate",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "HTTP date parsing and formatting"
},
{
"name": "hyper",
"version": "0.14.32",
"authors": "Sean McArthur <sean@seanmonstar.com>",
"repository": "https://github.com/hyperium/hyper",
"license": "MIT",
"license_file": null,
"description": "A fast and correct HTTP library."
},
{
"name": "hyper-tls",
"version": "0.5.0",
"authors": "Sean McArthur <sean@seanmonstar.com>",
"repository": "https://github.com/hyperium/hyper-tls",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Default TLS implementation for use with hyper"
},
{
"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": "icu_collections",
"version": "2.0.0",
"authors": "The ICU4X Project Developers",
"repository": "https://github.com/unicode-org/icu4x",
"license": "Unicode-3.0",
"license_file": null,
"description": "Collection of API for use in ICU libraries."
},
{
"name": "icu_locale_core",
"version": "2.0.0",
"authors": "The ICU4X Project Developers",
"repository": "https://github.com/unicode-org/icu4x",
"license": "Unicode-3.0",
"license_file": null,
"description": "API for managing Unicode Language and Locale Identifiers"
},
{
"name": "icu_normalizer",
"version": "2.0.0",
"authors": "The ICU4X Project Developers",
"repository": "https://github.com/unicode-org/icu4x",
"license": "Unicode-3.0",
"license_file": null,
"description": "API for normalizing text into Unicode Normalization Forms"
},
{
"name": "icu_normalizer_data",
"version": "2.0.0",
"authors": "The ICU4X Project Developers",
"repository": "https://github.com/unicode-org/icu4x",
"license": "Unicode-3.0",
"license_file": null,
"description": "Data for the icu_normalizer crate"
},
{
"name": "icu_properties",
"version": "2.0.1",
"authors": "The ICU4X Project Developers",
"repository": "https://github.com/unicode-org/icu4x",
"license": "Unicode-3.0",
"license_file": null,
"description": "Definitions for Unicode properties"
},
{
"name": "icu_properties_data",
"version": "2.0.1",
"authors": "The ICU4X Project Developers",
"repository": "https://github.com/unicode-org/icu4x",
"license": "Unicode-3.0",
"license_file": null,
"description": "Data for the icu_properties crate"
},
{
"name": "icu_provider",
"version": "2.0.0",
"authors": "The ICU4X Project Developers",
"repository": "https://github.com/unicode-org/icu4x",
"license": "Unicode-3.0",
"license_file": null,
"description": "Trait and struct definitions for the ICU data provider"
},
{
"name": "idna",
"version": "1.0.3",
"authors": "The rust-url developers",
"repository": "https://github.com/servo/rust-url/",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "IDNA (Internationalizing Domain Names in Applications) and Punycode."
},
{
"name": "idna_adapter",
"version": "1.2.1",
"authors": "The rust-url developers",
"repository": "https://github.com/hsivonen/idna_adapter",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Back end adapter for idna"
},
{
"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": "ipnet",
"version": "2.11.0",
"authors": "Kris Price <kris@krisprice.nz>",
"repository": "https://github.com/krisprice/ipnet",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Provides types and useful methods for working with IPv4 and IPv6 network addresses, commonly called IP prefixes. The new `IpNet`, `Ipv4Net`, and `Ipv6Net` types build on the existing `IpAddr`, `Ipv4Addr`, and `Ipv6Addr` types already provided in Rust's standard library and align to their design to stay consistent. The module also provides useful traits that extend `Ipv4Addr` and `Ipv6Addr` with methods for `Add`, `Sub`, `BitAnd`, and `BitOr` operations. The module only uses stable feature so it is guaranteed to compile using the stable toolchain."
},
{
"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": "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": "libc",
"version": "0.2.172",
"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.15",
"authors": "Jorge Aparicio <jorge@japaric.io>",
"repository": "https://github.com/rust-lang/compiler-builtins",
"license": "MIT",
"license_file": null,
"description": "libm in pure Rust"
},
{
"name": "libsqlite3-sys",
"version": "0.30.1",
"authors": "The rusqlite developers",
"repository": "https://github.com/rusqlite/rusqlite",
"license": "MIT",
"license_file": null,
"description": "Native bindings to the libsqlite3 library"
},
{
"name": "linux-raw-sys",
"version": "0.9.4",
"authors": "Dan Gohman <dev@sunfishcode.online>",
"repository": "https://github.com/sunfishcode/linux-raw-sys",
"license": "Apache-2.0 OR Apache-2.0 WITH LLVM-exception OR MIT",
"license_file": null,
"description": "Generated bindings for Linux's userspace API"
},
{
"name": "litemap",
"version": "0.8.0",
"authors": "The ICU4X Project Developers",
"repository": "https://github.com/unicode-org/icu4x",
"license": "Unicode-3.0",
"license_file": null,
"description": "A key-value Map implementation based on a flat, sorted Vec."
},
{
"name": "lock_api",
"version": "0.4.13",
"authors": "Amanieu d'Antras <amanieu@gmail.com>",
"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": "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": "matchers",
"version": "0.1.0",
"authors": "Eliza Weisman <eliza@buoyant.io>",
"repository": "https://github.com/hawkw/matchers",
"license": "MIT",
"license_file": null,
"description": "Regex matching on character and byte streams."
},
{
"name": "mcp_rust_examples",
"version": "0.1.0",
"authors": "Hamze Ghalebi <hamze@remolab.ai>",
"repository": "https://github.com/RustSandbox/MCP-Development-with-Rust",
"license": "MIT",
"license_file": null,
"description": "Complete educational resource for learning MCP (Model Context Protocol) development with Rust - 20 comprehensive examples from beginner to enterprise level"
},
{
"name": "md-5",
"version": "0.10.6",
"authors": "RustCrypto Developers",
"repository": "https://github.com/RustCrypto/hashes",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "MD5 hash function"
},
{
"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": "mime",
"version": "0.3.17",
"authors": "Sean McArthur <sean@seanmonstar.com>",
"repository": "https://github.com/hyperium/mime",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Strongly Typed Mimes"
},
{
"name": "miniz_oxide",
"version": "0.8.8",
"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": "mio",
"version": "1.0.4",
"authors": "Carl Lerche <me@carllerche.com>|Thomas de Zeeuw <thomasdezeeuw@gmail.com>|Tokio Contributors <team@tokio.rs>",
"repository": "https://github.com/tokio-rs/mio",
"license": "MIT",
"license_file": null,
"description": "Lightweight non-blocking I/O."
},
{
"name": "native-tls",
"version": "0.2.14",
"authors": "Steven Fackler <sfackler@gmail.com>",
"repository": "https://github.com/sfackler/rust-native-tls",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "A wrapper over a platform's native TLS implementation"
},
{
"name": "nu-ansi-term",
"version": "0.46.0",
"authors": "ogham@bsago.me|Ryan Scheel (Havvy) <ryan.havvy@gmail.com>|Josh Triplett <josh@joshtriplett.org>|The Nushell Project Developers",
"repository": "https://github.com/nushell/nu-ansi-term",
"license": "MIT",
"license_file": null,
"description": "Library for ANSI terminal colors and styles (bold, underline)"
},
{
"name": "num-bigint-dig",
"version": "0.8.4",
"authors": "dignifiedquire <dignifiedquire@gmail.com>|The Rust Project Developers",
"repository": "https://github.com/dignifiedquire/num-bigint",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Big integer implementation for Rust"
},
{
"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"
},