This repository has been archived by the owner on Nov 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdependencies.json
2450 lines (2450 loc) · 85.7 KB
/
dependencies.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": "actix-codec",
"version": "0.3.0",
"authors": "Nikolay Kim <[email protected]>",
"repository": "https://github.com/actix/actix-net.git",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Codec utilities for working with framed protocols."
},
{
"name": "actix-connect",
"version": "2.0.0",
"authors": "Nikolay Kim <[email protected]>",
"repository": "https://github.com/actix/actix-net.git",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "TCP connector service for Actix ecosystem."
},
{
"name": "actix-http",
"version": "2.2.0",
"authors": "Nikolay Kim <[email protected]>",
"repository": "https://github.com/actix/actix-web.git",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "HTTP primitives for the Actix ecosystem"
},
{
"name": "actix-macros",
"version": "0.1.3",
"authors": "Nikolay Kim <[email protected]>",
"repository": "https://github.com/actix/actix-net",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Actix runtime macros"
},
{
"name": "actix-router",
"version": "0.2.4",
"authors": "Nikolay Kim <[email protected]>",
"repository": "https://github.com/actix/actix-net.git",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Path router"
},
{
"name": "actix-rt",
"version": "1.1.1",
"authors": "Nikolay Kim <[email protected]>",
"repository": "https://github.com/actix/actix-net.git",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Actix runtime"
},
{
"name": "actix-server",
"version": "1.0.4",
"authors": "Nikolay Kim <[email protected]>",
"repository": "https://github.com/actix/actix-net.git",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "General purpose TCP server built for the Actix ecosystem"
},
{
"name": "actix-service",
"version": "1.0.6",
"authors": "Nikolay Kim <[email protected]>",
"repository": "https://github.com/actix/actix-net.git",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Service trait and combinators for representing asynchronous request/response operations."
},
{
"name": "actix-testing",
"version": "1.0.1",
"authors": "Nikolay Kim <[email protected]>",
"repository": "https://github.com/actix/actix-net.git",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Actix testing utils"
},
{
"name": "actix-threadpool",
"version": "0.3.3",
"authors": "Nikolay Kim <[email protected]>",
"repository": "https://github.com/actix/actix-net.git",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Actix thread pool for sync code"
},
{
"name": "actix-tls",
"version": "2.0.0",
"authors": "Nikolay Kim <[email protected]>",
"repository": "https://github.com/actix/actix-net.git",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "TLS acceptor services for Actix ecosystem."
},
{
"name": "actix-utils",
"version": "2.0.0",
"authors": "Nikolay Kim <[email protected]>",
"repository": "https://github.com/actix/actix-net.git",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Various network related services and utilities for the Actix ecosystem."
},
{
"name": "actix-web",
"version": "3.3.0",
"authors": "Nikolay Kim <[email protected]>",
"repository": "https://github.com/actix/actix-web.git",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Actix web is a powerful, pragmatic, and extremely fast web framework for Rust"
},
{
"name": "actix-web-codegen",
"version": "0.4.0",
"authors": "Nikolay Kim <[email protected]>",
"repository": "https://github.com/actix/actix-web",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Actix web proc macros"
},
{
"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": "aho-corasick",
"version": "0.7.18",
"authors": "Andrew Gallant <[email protected]>",
"repository": "https://github.com/BurntSushi/aho-corasick",
"license": "MIT OR Unlicense",
"license_file": null,
"description": "Fast multiple substring searching."
},
{
"name": "ansi_term",
"version": "0.11.0",
"authors": "[email protected]|Ryan Scheel (Havvy) <[email protected]>|Josh Triplett <[email protected]>",
"repository": null,
"license": "MIT",
"license_file": null,
"description": "Library for ANSI terminal colours and styles (bold, underline)"
},
{
"name": "arc-swap",
"version": "0.4.8",
"authors": "Michal 'vorner' Vaner <[email protected]>",
"repository": "https://github.com/vorner/arc-swap",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Atomically swappable Arc"
},
{
"name": "asn1",
"version": "0.4.1",
"authors": "Alex Gaynor <[email protected]>",
"repository": "https://github.com/alex/rust-asn1",
"license": "BSD-3-Clause",
"license_file": null,
"description": "ASN.1 (DER) parser and writer for Rust."
},
{
"name": "asn1_derive",
"version": "0.4.2",
"authors": "Alex Gaynor <[email protected]>",
"repository": "https://github.com/alex/rust-asn1",
"license": "BSD-3-Clause",
"license_file": null,
"description": "#[derive] support for asn1"
},
{
"name": "async-trait",
"version": "0.1.50",
"authors": "David Tolnay <[email protected]>",
"repository": "https://github.com/dtolnay/async-trait",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Type erasure for async trait methods"
},
{
"name": "atty",
"version": "0.2.14",
"authors": "softprops <[email protected]>",
"repository": "https://github.com/softprops/atty",
"license": "MIT",
"license_file": null,
"description": "A simple interface for querying atty"
},
{
"name": "autocfg",
"version": "1.0.1",
"authors": "Josh Stone <[email protected]>",
"repository": "https://github.com/cuviper/autocfg",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Automatic cfg for Rust compiler features"
},
{
"name": "awc",
"version": "2.0.3",
"authors": "Nikolay Kim <[email protected]>",
"repository": "https://github.com/actix/actix-web.git",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Async HTTP and WebSocket client library built on the Actix ecosystem"
},
{
"name": "base-x",
"version": "0.2.8",
"authors": "Alex R. <[email protected]>",
"repository": "https://github.com/OrKoN/base-x-rs",
"license": "MIT",
"license_file": null,
"description": "Encode/decode any base"
},
{
"name": "base64",
"version": "0.12.3",
"authors": "Alice Maz <[email protected]>|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": "base64",
"version": "0.13.0",
"authors": "Alice Maz <[email protected]>|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": "bdays",
"version": "0.1.2",
"authors": "Felipe Noronha <[email protected]>",
"repository": "https://github.com/felipenoris/bdays",
"license": "MIT",
"license_file": null,
"description": "Business Days calendars for Rustaceans."
},
{
"name": "bitflags",
"version": "1.2.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.9.0",
"authors": "RustCrypto Developers",
"repository": "https://github.com/RustCrypto/utils",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Fixed size buffer for block processing of data"
},
{
"name": "brotli-sys",
"version": "0.3.2",
"authors": "Alex Crichton <[email protected]>",
"repository": "https://github.com/alexcrichton/brotli2-rs",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Raw bindings to libbrotli"
},
{
"name": "brotli2",
"version": "0.3.2",
"authors": "Alex Crichton <[email protected]>",
"repository": "https://github.com/alexcrichton/brotli2-rs",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Bindings to libbrotli to provide brotli decompression and compression to Rust"
},
{
"name": "bumpalo",
"version": "3.7.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": "byteorder",
"version": "1.4.3",
"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": "bytes",
"version": "0.5.6",
"authors": "Carl Lerche <[email protected]>|Sean McArthur <[email protected]>",
"repository": "https://github.com/tokio-rs/bytes",
"license": "MIT",
"license_file": null,
"description": "Types and traits for working with bytes"
},
{
"name": "bytes",
"version": "1.0.1",
"authors": "Carl Lerche <[email protected]>|Sean McArthur <[email protected]>",
"repository": "https://github.com/tokio-rs/bytes",
"license": "MIT",
"license_file": null,
"description": "Types and traits for working with bytes"
},
{
"name": "bytestring",
"version": "0.1.5",
"authors": "Nikolay Kim <[email protected]>",
"repository": "https://github.com/actix/actix-net.git",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "A UTF-8 encoded string with Bytes as a storage"
},
{
"name": "cc",
"version": "1.0.68",
"authors": "Alex Crichton <[email protected]>",
"repository": "https://github.com/alexcrichton/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": "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": "chrono",
"version": "0.4.19",
"authors": "Kang Seonghoon <[email protected]>|Brandon W Maister <[email protected]>",
"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": "2.33.3",
"authors": "Kevin K. <[email protected]>",
"repository": "https://github.com/clap-rs/clap",
"license": "MIT",
"license_file": null,
"description": "A simple to use, efficient, and full-featured Command Line Argument Parser"
},
{
"name": "cloudabi",
"version": "0.0.3",
"authors": "Nuxi (https://nuxi.nl/) and contributors",
"repository": "https://github.com/nuxinl/cloudabi",
"license": "BSD-2-Clause",
"license_file": null,
"description": "Low level interface to CloudABI. Contains all syscalls and related types."
},
{
"name": "const_fn",
"version": "0.4.8",
"authors": "Taiki Endo <[email protected]>",
"repository": "https://github.com/taiki-e/const_fn",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "An attribute for easy generation of const functions with conditional compilations."
},
{
"name": "convert_case",
"version": "0.4.0",
"authors": "David Purdum <[email protected]>",
"repository": "https://github.com/rutrum/convert-case",
"license": "MIT",
"license_file": null,
"description": "Convert strings into any case"
},
{
"name": "cookie",
"version": "0.14.4",
"authors": "Sergio Benitez <[email protected]>|Alex Crichton <[email protected]>",
"repository": "https://github.com/SergioBenitez/cookie-rs",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "HTTP cookie parsing and cookie jar management. Supports signed and private (encrypted, authenticated) jars."
},
{
"name": "copyless",
"version": "0.1.5",
"authors": "Dzmitry Malyshau <[email protected]>",
"repository": "https://github.com/kvark/copyless",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Ways to eliminate memcpy calls when using the standard library."
},
{
"name": "core-foundation",
"version": "0.7.0",
"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.7.0",
"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.1.4",
"authors": "RustCrypto Developers",
"repository": "https://github.com/RustCrypto/utils",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Lightweight and efficient no-std compatible alternative to the is_x86_feature_detected! macro"
},
{
"name": "crc32fast",
"version": "1.2.1",
"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": "crypto-mac",
"version": "0.8.0",
"authors": "RustCrypto Developers",
"repository": "https://github.com/RustCrypto/traits",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Trait for Message Authentication Code (MAC) algorithms"
},
{
"name": "derive_more",
"version": "0.99.14",
"authors": "Jelte Fennema <[email protected]>",
"repository": "https://github.com/JelteF/derive_more",
"license": "MIT",
"license_file": null,
"description": "Adds #[derive(x)] macros for more traits"
},
{
"name": "digest",
"version": "0.9.0",
"authors": "RustCrypto Developers",
"repository": "https://github.com/RustCrypto/traits",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Traits for cryptographic hash functions"
},
{
"name": "discard",
"version": "1.0.4",
"authors": "Pauan <[email protected]>",
"repository": "https://github.com/Pauan/rust-discard",
"license": "MIT",
"license_file": null,
"description": "Discard trait which allows for intentionally leaking memory"
},
{
"name": "dtoa",
"version": "0.4.8",
"authors": "David Tolnay <[email protected]>",
"repository": "https://github.com/dtolnay/dtoa",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Fast functions for printing floating-point primitives to an io::Write"
},
{
"name": "either",
"version": "1.6.1",
"authors": "bluss",
"repository": "https://github.com/bluss/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.28",
"authors": "Henri Sivonen <[email protected]>",
"repository": "https://github.com/hsivonen/encoding_rs",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "A Gecko-oriented implementation of the Encoding Standard"
},
{
"name": "enum-as-inner",
"version": "0.3.3",
"authors": "Benjamin Fry <[email protected]>",
"repository": "https://github.com/bluejekyll/enum-as-inner",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "A proc-macro for deriving inner field accessor functions on enums."
},
{
"name": "flate2",
"version": "1.0.20",
"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, miniz.c, and multiple zlib implementations. Supports zlib, gzip, and raw deflate streams."
},
{
"name": "fnv",
"version": "1.0.7",
"authors": "Alex Crichton <[email protected]>",
"repository": "https://github.com/servo/rust-fnv",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Fowler–Noll–Vo hash function"
},
{
"name": "foreign-types",
"version": "0.3.2",
"authors": "Steven Fackler <[email protected]>",
"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",
"version": "0.5.0",
"authors": "Steven Fackler <[email protected]>",
"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-macros",
"version": "0.2.1",
"authors": "Steven Fackler <[email protected]>",
"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": "foreign-types-shared",
"version": "0.1.1",
"authors": "Steven Fackler <[email protected]>",
"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": "foreign-types-shared",
"version": "0.3.0",
"authors": "Steven Fackler <[email protected]>",
"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.0.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": "fuchsia-zircon",
"version": "0.3.3",
"authors": "Raph Levien <[email protected]>",
"repository": "https://fuchsia.googlesource.com/garnet/",
"license": "BSD-3-Clause",
"license_file": null,
"description": "Rust bindings for the Zircon kernel"
},
{
"name": "fuchsia-zircon-sys",
"version": "0.3.3",
"authors": "Raph Levien <[email protected]>",
"repository": "https://fuchsia.googlesource.com/garnet/",
"license": "BSD-3-Clause",
"license_file": null,
"description": "Low-level Rust bindings for the Zircon kernel"
},
{
"name": "futures",
"version": "0.3.15",
"authors": "Alex Crichton <[email protected]>",
"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.15",
"authors": "Alex Crichton <[email protected]>",
"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.15",
"authors": "Alex Crichton <[email protected]>",
"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.15",
"authors": "Alex Crichton <[email protected]>",
"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-io",
"version": "0.3.15",
"authors": "Alex Crichton <[email protected]>",
"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.15",
"authors": "Taylor Cramer <[email protected]>|Taiki Endo <[email protected]>",
"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.15",
"authors": "Alex Crichton <[email protected]>",
"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.15",
"authors": "Alex Crichton <[email protected]>",
"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.15",
"authors": "Alex Crichton <[email protected]>",
"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": "fxhash",
"version": "0.2.1",
"authors": "cbreeden <[email protected]>",
"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": "generic-array",
"version": "0.14.4",
"authors": "Bartłomiej Kamiński <[email protected]>|Aaron Trent <[email protected]>",
"repository": "https://github.com/fizyk20/generic-array.git",
"license": "MIT",
"license_file": null,
"description": "Generic types implementing functionality of arrays"
},
{
"name": "getrandom",
"version": "0.1.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": "glob",
"version": "0.3.0",
"authors": "The Rust Project Developers",
"repository": "https://github.com/rust-lang/glob",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Support for matching file paths against Unix shell style patterns."
},
{
"name": "h2",
"version": "0.2.7",
"authors": "Carl Lerche <[email protected]>|Sean McArthur <[email protected]>",
"repository": "https://github.com/hyperium/h2",
"license": "MIT",
"license_file": null,
"description": "An HTTP/2.0 client and server"
},
{
"name": "hashbrown",
"version": "0.9.1",
"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": "heck",
"version": "0.3.3",
"authors": "Without Boats <[email protected]>",
"repository": "https://github.com/withoutboats/heck",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "heck is a case conversion library."
},
{
"name": "hermit-abi",
"version": "0.1.18",
"authors": "Stefan Lankes",
"repository": "https://github.com/hermitcore/libhermit-rs",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "hermit-abi is small interface to call functions from the unikernel RustyHermit. It is used to build the target `x86_64-unknown-hermit`."
},
{
"name": "hmac",
"version": "0.8.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": "hostname",
"version": "0.3.1",
"authors": "fengcen <[email protected]>|svartalf <[email protected]>",
"repository": "https://github.com/svartalf/hostname",
"license": "MIT",
"license_file": null,
"description": "Cross-platform system's host name functions"
},
{
"name": "http",
"version": "0.2.4",
"authors": "Alex Crichton <[email protected]>|Carl Lerche <[email protected]>|Sean McArthur <[email protected]>",
"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.3.1",
"authors": "Carl Lerche <[email protected]>|Lucio Franco <[email protected]>|Sean McArthur <[email protected]>",
"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.4.1",
"authors": "Sean McArthur <[email protected]>",
"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": "0.3.2",
"authors": "Pyfisch <[email protected]>",
"repository": "https://github.com/pyfisch/httpdate",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "HTTP date parsing and formatting"
},
{
"name": "humantime",
"version": "1.3.0",
"authors": "Paul Colomiets <[email protected]>",
"repository": null,
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "A parser and formatter for std::time::{Duration, SystemTime}"
},
{
"name": "hyper",
"version": "0.13.10",
"authors": "Sean McArthur <[email protected]>",
"repository": "https://github.com/hyperium/hyper",
"license": "MIT",
"license_file": null,
"description": "A fast and correct HTTP library."
},
{
"name": "hyper-rustls",
"version": "0.21.0",
"authors": "Joseph Birr-Pixton <[email protected]>",
"repository": "https://github.com/ctz/hyper-rustls",
"license": "Apache-2.0 OR ISC OR MIT",
"license_file": null,
"description": "Rustls+hyper integration for pure rust HTTPS"
},
{
"name": "idna",
"version": "0.2.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": "indexmap",
"version": "1.6.2",
"authors": "bluss|Josh Stone <[email protected]>",
"repository": "https://github.com/bluss/indexmap",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "A hash table with consistent order and fast iteration. The indexmap is a hash table where the iteration order of the key-value pairs is independent of the hash values of the keys. It has the usual hash table functionality, it preserves insertion order except after removals, and it allows lookup of its elements by either hash table key or numerical index. A corresponding hash set type is also provided. This crate was initially published under the name ordermap, but it was renamed to indexmap."
},
{
"name": "instant",
"version": "0.1.9",
"authors": "sebcrozet <[email protected]>",
"repository": "https://github.com/sebcrozet/instant",
"license": "BSD-3-Clause",
"license_file": null,
"description": "A partial replacement for std::time::Instant that works on WASM too."
},
{
"name": "iovec",
"version": "0.1.4",
"authors": "Carl Lerche <[email protected]>",
"repository": "https://github.com/carllerche/iovec",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Portable buffer type for scatter/gather I/O operations"
},
{
"name": "ipconfig",
"version": "0.2.2",
"authors": "Liran Ringel <[email protected]>",
"repository": "https://github.com/liranringel/ipconfig",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Get network adapters information and network configuration for windows."
},
{
"name": "ipnet",
"version": "2.3.0",
"authors": "Kris Price <[email protected]>",
"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": "0.4.7",
"authors": "David Tolnay <[email protected]>",
"repository": "https://github.com/dtolnay/itoa",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Fast functions for printing integer primitives to an io::Write"
},
{
"name": "js-sys",
"version": "0.3.51",
"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": "jwt",
"version": "0.10.0",
"authors": "Michael Yang <[email protected]>",
"repository": "http://github.com/mikkyang/rust-jwt",
"license": "MIT",
"license_file": null,
"description": "JSON Web Token library"
},
{
"name": "kernel32-sys",
"version": "0.2.2",
"authors": "Peter Atashian <[email protected]>",
"repository": "https://github.com/retep998/winapi-rs",
"license": "MIT",
"license_file": null,
"description": "Contains function definitions for the Windows API library kernel32. See winapi for types and constants."
},
{
"name": "language-tags",
"version": "0.2.2",
"authors": "Pyfisch <[email protected]>",
"repository": "https://github.com/pyfisch/rust-language-tags",
"license": "MIT",
"license_file": null,
"description": "Language tags for Rust"
},
{
"name": "lazy_static",
"version": "1.4.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": "libc",
"version": "0.2.96",
"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": "libxml",
"version": "0.1.0",
"authors": null,
"repository": null,
"license": null,
"license_file": null,
"description": null
},
{
"name": "libxml-sys",
"version": "0.1.0",
"authors": null,
"repository": null,
"license": null,
"license_file": null,
"description": null
},
{
"name": "linked-hash-map",
"version": "0.5.4",
"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"
},