This repository has been archived by the owner on Sep 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathLICENSE.dependencies
1658 lines (1658 loc) · 58.3 KB
/
LICENSE.dependencies
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": "proc-macro-hack",
"version": "0.5.18",
"authors": "David Tolnay <[email protected]>",
"repository": "https://github.com/dtolnay/proc-macro-hack",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Procedural macros in expression position"
},
{
"name": "plist",
"version": "1.0.0",
"authors": "Ed Barnard <[email protected]>",
"repository": "https://github.com/ebarnard/rust-plist/",
"license": "MIT",
"license_file": null,
"description": "A rusty plist parser. Supports Serde serialization."
},
{
"name": "winapi-util",
"version": "0.1.5",
"authors": "Andrew Gallant <[email protected]>",
"repository": "https://github.com/BurntSushi/winapi-util",
"license": "MIT OR Unlicense",
"license_file": null,
"description": "A dumping ground for high level safe wrappers over winapi."
},
{
"name": "try-lock",
"version": "0.2.3",
"authors": "Sean McArthur <[email protected]>",
"repository": "https://github.com/seanmonstar/try-lock",
"license": "MIT",
"license_file": null,
"description": "A lightweight atomic lock."
},
{
"name": "crc32fast",
"version": "1.2.0",
"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": "log",
"version": "0.4.11",
"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": "rand_core",
"version": "0.5.1",
"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": "inlinable_string",
"version": "0.1.11",
"authors": "Nick Fitzgerald <[email protected]>",
"repository": "https://github.com/fitzgen/inlinable_string",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "The `inlinable_string` crate provides the `InlinableString` type -- an owned, grow-able UTF-8 string that stores small strings inline and avoids heap-allocation -- and the `StringExt` trait which abstracts string operations over both `std::string::String` and `InlinableString` (or even your own custom string type)."
},
{
"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": "rocket_codegen",
"version": "0.5.0-dev",
"authors": "Sergio Benitez <[email protected]>",
"repository": "https://github.com/SergioBenitez/Rocket",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Procedural macros for the Rocket web framework."
},
{
"name": "futures-channel",
"version": "0.3.6",
"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": "atomic",
"version": "0.5.0",
"authors": "Amanieu d'Antras <[email protected]>",
"repository": "https://github.com/Amanieu/atomic-rs",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Generic Atomic<T> wrapper type"
},
{
"name": "walkdir",
"version": "2.3.1",
"authors": "Andrew Gallant <[email protected]>",
"repository": "https://github.com/BurntSushi/walkdir",
"license": "MIT OR Unlicense",
"license_file": null,
"description": "Recursively walk a directory."
},
{
"name": "miow",
"version": "0.2.1",
"authors": "Alex Crichton <[email protected]>",
"repository": "https://github.com/alexcrichton/miow",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "A zero overhead I/O library for Windows, focusing on IOCP and Async I/O abstractions."
},
{
"name": "tokio",
"version": "0.2.22",
"authors": "Tokio Contributors <[email protected]>",
"repository": "https://github.com/tokio-rs/tokio",
"license": "MIT",
"license_file": null,
"description": "An event-driven, non-blocking I/O platform for writing asynchronous I/O backed applications."
},
{
"name": "wasm-bindgen-shared",
"version": "0.2.68",
"authors": "The wasm-bindgen Developers",
"repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/shared",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Shared support between wasm-bindgen and wasm-bindgen cli, an internal dependency."
},
{
"name": "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": "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": "bumpalo",
"version": "3.4.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": "pear",
"version": "0.2.0-dev",
"authors": "Sergio Benitez <[email protected]>",
"repository": null,
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "A pear is a fruit."
},
{
"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": "crossbeam-utils",
"version": "0.7.2",
"authors": "The Crossbeam Project Developers",
"repository": "https://github.com/crossbeam-rs/crossbeam",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Utilities for concurrent programming"
},
{
"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": "maybe-uninit",
"version": "2.0.0",
"authors": "est31 <[email protected]>|The Rust Project Developers",
"repository": "https://github.com/est31/maybe-uninit",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "MaybeUninit for friends of backwards compatibility"
},
{
"name": "futures-task",
"version": "0.3.6",
"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": "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": "mio",
"version": "0.6.22",
"authors": "Carl Lerche <[email protected]>",
"repository": "https://github.com/tokio-rs/mio",
"license": "MIT",
"license_file": null,
"description": "Lightweight non-blocking IO"
},
{
"name": "byteorder",
"version": "1.3.4",
"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": "stdweb-internal-runtime",
"version": "0.1.5",
"authors": "Jan Bujak <[email protected]>",
"repository": "https://github.com/koute/stdweb",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Internal runtime for the `stdweb` crate"
},
{
"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": "devise_core",
"version": "0.3.0",
"authors": "Sergio Benitez <[email protected]>",
"repository": "https://github.com/SergioBenitez/Devise",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "A library for devising derives and other procedural macros."
},
{
"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": "aesni",
"version": "0.7.0",
"authors": "RustCrypto Developers",
"repository": "https://github.com/RustCrypto/block-ciphers",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "AES (Rijndael) block ciphers implementation using AES-NI"
},
{
"name": "winapi-i686-pc-windows-gnu",
"version": "0.4.0",
"authors": "Peter Atashian <[email protected]>",
"repository": "https://github.com/retep998/winapi-rs",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Import libraries for the i686-pc-windows-gnu target. Please don't use this crate directly, depend on winapi instead."
},
{
"name": "line-wrap",
"version": "0.1.1",
"authors": "Marshall Pierce <[email protected]>",
"repository": "https://bitbucket.org/marshallpierce/line-wrap-rs/src",
"license": "Apache-2.0",
"license_file": null,
"description": "Efficiently insert line separators"
},
{
"name": "hkdf",
"version": "0.9.0",
"authors": "vladikoff|warner|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": "onig_sys",
"version": "69.5.1",
"authors": "Will Speak <[email protected]>|Ivan Ivashchenko <[email protected]>",
"repository": "http://github.com/iwillspeak/rust-onig",
"license": "MIT",
"license_file": null,
"description": "The `onig_sys` crate contains raw rust bindings to the oniguruma library. This crate exposes a set of unsafe functions which can then be used by other crates to create safe wrappers around Oniguruma. You probably don't want to link to this crate directly; instead check out the `onig` crate."
},
{
"name": "tracing",
"version": "0.1.21",
"authors": "Eliza Weisman <[email protected]>|Tokio Contributors <[email protected]>",
"repository": "https://github.com/tokio-rs/tracing",
"license": "MIT",
"license_file": null,
"description": "Application-level tracing for Rust."
},
{
"name": "hermit-abi",
"version": "0.1.17",
"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": "wasm-bindgen",
"version": "0.2.68",
"authors": "The wasm-bindgen Developers",
"repository": "https://github.com/rustwasm/wasm-bindgen",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Easy support for interacting between JS and Rust."
},
{
"name": "syn",
"version": "1.0.42",
"authors": "David Tolnay <[email protected]>",
"repository": "https://github.com/dtolnay/syn",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Parser for Rust source code"
},
{
"name": "regex-syntax",
"version": "0.6.18",
"authors": "The Rust Project Developers",
"repository": "https://github.com/rust-lang/regex",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "A regular expression parser."
},
{
"name": "pin-utils",
"version": "0.1.0",
"authors": "Josef Brandl <[email protected]>",
"repository": "https://github.com/rust-lang-nursery/pin-utils",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Utilities for pinning"
},
{
"name": "ref-cast",
"version": "1.0.2",
"authors": "David Tolnay <[email protected]>",
"repository": "https://github.com/dtolnay/ref-cast",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Safely cast &T to &U where the struct U contains a single field of type T."
},
{
"name": "libc",
"version": "0.2.79",
"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": "scopeguard",
"version": "1.1.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": "crossbeam-deque",
"version": "0.7.3",
"authors": "The Crossbeam Project Developers",
"repository": "https://github.com/crossbeam-rs/crossbeam",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Concurrent work-stealing deque"
},
{
"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": "polyval",
"version": "0.4.1",
"authors": "RustCrypto Developers",
"repository": "https://github.com/RustCrypto/universal-hashes",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "POLYVAL is a GHASH-like universal hash over GF(2^128) useful for constructing a Message Authentication Code (MAC)"
},
{
"name": "base-x",
"version": "0.2.6",
"authors": "Alex R. <[email protected]>",
"repository": "https://github.com/OrKoN/base-x-rs",
"license": "MIT",
"license_file": null,
"description": "Encode/decode any base"
},
{
"name": "syntect_server",
"version": "1.0.0",
"authors": "Stephen Gutekanst <[email protected]>",
"repository": null,
"license": "MIT",
"license_file": null,
"description": null
},
{
"name": "tokio-util",
"version": "0.3.1",
"authors": "Tokio Contributors <[email protected]>",
"repository": "https://github.com/tokio-rs/tokio",
"license": "MIT",
"license_file": null,
"description": "Additional utilities for working with Tokio."
},
{
"name": "http",
"version": "0.2.1",
"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": "serde_json",
"version": "1.0.58",
"authors": "Erick Tryzelaar <[email protected]>|David Tolnay <[email protected]>",
"repository": "https://github.com/serde-rs/json",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "A JSON serialization file format"
},
{
"name": "async-trait",
"version": "0.1.41",
"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": "syntect",
"version": "4.4.0",
"authors": "Tristan Hume <[email protected]>",
"repository": "https://github.com/trishume/syntect",
"license": "MIT",
"license_file": null,
"description": "library for high quality syntax highlighting and code intelligence using Sublime Text's grammars"
},
{
"name": "devise",
"version": "0.3.0",
"authors": "Sergio Benitez <[email protected]>",
"repository": "https://github.com/SergioBenitez/Devise",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "A library for devising derives and other procedural macros."
},
{
"name": "subtle",
"version": "2.3.0",
"authors": "Isis Lovecruft <[email protected]>|Henry de Valence <[email protected]>",
"repository": "https://github.com/dalek-cryptography/subtle",
"license": "BSD-3-Clause",
"license_file": null,
"description": "Pure-Rust traits and utilities for constant-time cryptographic implementations."
},
{
"name": "ryu",
"version": "1.0.5",
"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": "wasi",
"version": "0.9.0+wasi-snapshot-preview1",
"authors": "The Cranelift Project Developers",
"repository": "https://github.com/bytecodealliance/wasi",
"license": "Apache-2.0 OR Apache-2.0 WITH LLVM-exception OR MIT",
"license_file": null,
"description": "Experimental WASI API bindings for Rust"
},
{
"name": "futures",
"version": "0.3.6",
"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": "uncased",
"version": "0.9.2",
"authors": "Sergio Benitez <[email protected]>",
"repository": "https://github.com/SergioBenitez/uncased",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Case-preserving, ASCII case-insensitive, no_std string types."
},
{
"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": "miniz_oxide",
"version": "0.4.2",
"authors": "Frommi <[email protected]>|oyvindln <[email protected]>",
"repository": "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide",
"license": "MIT",
"license_file": null,
"description": "DEFLATE compression and decompression library rewritten in Rust based on miniz"
},
{
"name": "opaque-debug",
"version": "0.3.0",
"authors": "RustCrypto Developers",
"repository": "https://github.com/RustCrypto/utils",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Macro for opaque Debug trait implementation"
},
{
"name": "httparse",
"version": "1.3.4",
"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": "getrandom",
"version": "0.1.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": "mio-uds",
"version": "0.6.8",
"authors": "Alex Crichton <[email protected]>",
"repository": "https://github.com/deprecrated/mio-uds",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Unix domain socket bindings for mio"
},
{
"name": "rocket_http",
"version": "0.5.0-dev",
"authors": "Sergio Benitez <[email protected]>",
"repository": "https://github.com/SergioBenitez/Rocket",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Types, traits, and parsers for HTTP requests, responses, and headers."
},
{
"name": "indexmap",
"version": "1.6.0",
"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": "percent-encoding",
"version": "2.1.0",
"authors": "The rust-url developers",
"repository": "https://github.com/servo/rust-url/",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Percent encoding and decoding"
},
{
"name": "adler",
"version": "0.2.3",
"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": "h2",
"version": "0.2.6",
"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": "standback",
"version": "0.2.10",
"authors": "Jacob Pratt <[email protected]>|The Rust Project Developers",
"repository": "https://github.com/jhpratt/standback",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "New standard library, old compiler."
},
{
"name": "ws2_32-sys",
"version": "0.2.1",
"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 ws2_32. See winapi for types and constants."
},
{
"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": "ubyte",
"version": "0.10.0",
"authors": "Sergio Benitez <[email protected]>",
"repository": "https://github.com/SergioBenitez/ubyte",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "A simple, complete, const-everything, saturating, human-friendly, no_std library for byte units."
},
{
"name": "aes",
"version": "0.4.0",
"authors": "RustCrypto Developers",
"repository": "https://github.com/RustCrypto/block-ciphers",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Facade for AES (Rijndael) block ciphers implementations"
},
{
"name": "wasm-bindgen-macro-support",
"version": "0.2.68",
"authors": "The wasm-bindgen Developers",
"repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro-support",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "The part of the implementation of the `#[wasm_bindgen]` attribute that is not in the shared backend crate"
},
{
"name": "semver-parser",
"version": "0.7.0",
"authors": "Steve Klabnik <[email protected]>",
"repository": "https://github.com/steveklabnik/semver-parser",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Parsing of the semver spec."
},
{
"name": "rocket",
"version": "0.5.0-dev",
"authors": "Sergio Benitez <[email protected]>",
"repository": "https://github.com/SergioBenitez/Rocket",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Web framework with a focus on usability, security, extensibility, and speed."
},
{
"name": "hyper",
"version": "0.13.8",
"authors": "Sean McArthur <[email protected]>",
"repository": "https://github.com/hyperium/hyper",
"license": "MIT",
"license_file": null,
"description": "A fast and correct HTTP library."
},
{
"name": "slab",
"version": "0.4.2",
"authors": "Carl Lerche <[email protected]>",
"repository": "https://github.com/carllerche/slab",
"license": "MIT",
"license_file": null,
"description": "Pre-allocated storage for a uniform data type"
},
{
"name": "num-traits",
"version": "0.2.12",
"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.4.1",
"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": "devise_codegen",
"version": "0.3.0",
"authors": "Sergio Benitez <[email protected]>",
"repository": "https://github.com/SergioBenitez/Devise",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "A library for devising derives and other procedural macros."
},
{
"name": "crossbeam-channel",
"version": "0.4.4",
"authors": "The Crossbeam Project Developers",
"repository": "https://github.com/crossbeam-rs/crossbeam",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Multi-producer multi-consumer channels for message passing"
},
{
"name": "stdweb-derive",
"version": "0.5.3",
"authors": "Jan Bujak <[email protected]>",
"repository": "https://github.com/koute/stdweb",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Derive macros for the `stdweb` crate"
},
{
"name": "pin-project",
"version": "0.4.26",
"authors": "Taiki Endo <[email protected]>",
"repository": "https://github.com/taiki-e/pin-project",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "A crate for safe and ergonomic pin-projection."
},
{
"name": "toml",
"version": "0.5.6",
"authors": "Alex Crichton <[email protected]>",
"repository": "https://github.com/alexcrichton/toml-rs",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "A native Rust encoder and decoder of TOML-formatted files and streams. Provides implementations of the standard Serialize/Deserialize traits for TOML data to facilitate deserializing and serializing Rust structures."
},
{
"name": "mime",
"version": "0.3.16",
"authors": "Sean McArthur <[email protected]>",
"repository": "https://github.com/hyperium/mime",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Strongly Typed Mimes"
},
{
"name": "aes-gcm",
"version": "0.6.0",
"authors": "RustCrypto Developers",
"repository": "https://github.com/RustCrypto/AEADs",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Pure Rust implementation of the AES-GCM (Galois/Counter Mode) Authenticated Encryption with Associated Data (AEAD) Cipher with optional architecture-specific hardware acceleration"
},
{
"name": "signal-hook-registry",
"version": "1.2.1",
"authors": "Michal 'vorner' Vaner <[email protected]>|Masaki Hara <[email protected]>",
"repository": "https://github.com/vorner/signal-hook",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Backend crate for signal-hook"
},
{
"name": "num_cpus",
"version": "1.13.0",
"authors": "Sean McArthur <[email protected]>",
"repository": "https://github.com/seanmonstar/num_cpus",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Get the number of CPUs on a machine."
},
{
"name": "state",
"version": "0.4.1",
"authors": "Sergio Benitez <[email protected]>",
"repository": "https://github.com/SergioBenitez/state",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "A library for safe and effortless global and thread-local state management."
},
{
"name": "bincode",
"version": "1.3.1",
"authors": "Ty Overby <[email protected]>|Francesco Mazzoli <[email protected]>|David Tolnay <[email protected]>|Zoey Riordan <[email protected]>",
"repository": "https://github.com/servo/bincode",
"license": "MIT",
"license_file": null,
"description": "A binary serialization / deserialization strategy that uses Serde for transforming structs into bytes and vice versa!"
},
{
"name": "serde",
"version": "1.0.116",
"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": "safemem",
"version": "0.3.3",
"authors": "Austin Bonander <[email protected]>",
"repository": "https://github.com/abonander/safemem",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Safe wrappers for memory-accessing functions, like `std::ptr::copy()`."
},
{
"name": "winapi-x86_64-pc-windows-gnu",
"version": "0.4.0",
"authors": "Peter Atashian <[email protected]>",
"repository": "https://github.com/retep998/winapi-rs",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Import libraries for the x86_64-pc-windows-gnu target. Please don't use this crate directly, depend on winapi instead."
},
{
"name": "winapi",
"version": "0.2.8",
"authors": "Peter Atashian <[email protected]>",
"repository": "https://github.com/retep998/winapi-rs",
"license": "MIT",
"license_file": null,
"description": "Types and constants for WinAPI bindings. See README for list of crates providing function bindings."
},
{
"name": "wasm-bindgen-backend",
"version": "0.2.68",
"authors": "The wasm-bindgen Developers",
"repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Backend code generation of the wasm-bindgen tool"
},
{
"name": "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": "linked-hash-map",
"version": "0.5.3",
"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": "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": "sha1",
"version": "0.6.0",
"authors": "Armin Ronacher <[email protected]>",
"repository": "https://github.com/mitsuhiko/rust-sha1",
"license": "BSD-3-Clause",
"license_file": null,
"description": "Minimal implementation of SHA1 for Rust."
},
{
"name": "tower-service",
"version": "0.3.0",
"authors": "Tower Maintainers <[email protected]>",
"repository": "https://github.com/tower-rs/tower",
"license": "MIT",
"license_file": null,
"description": "Trait representing an asynchronous, request / response based, client or server."
},
{
"name": "universal-hash",
"version": "0.4.0",
"authors": "RustCrypto Developers",
"repository": "https://github.com/RustCrypto/traits",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Trait for universal hash functions"
},
{
"name": "rayon",
"version": "1.4.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": "Simple work-stealing parallelism for Rust"
},
{
"name": "ghash",
"version": "0.3.0",
"authors": "RustCrypto Developers",
"repository": "https://github.com/RustCrypto/universal-hashes",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Universal hash over GF(2^128) useful for constructing a Message Authentication Code (MAC), as in the AES-GCM authenticated encryption cipher."
},
{
"name": "winapi-build",
"version": "0.1.1",
"authors": "Peter Atashian <[email protected]>",
"repository": "https://github.com/retep998/winapi-rs",
"license": "MIT",
"license_file": null,
"description": "Common code for build.rs in WinAPI -sys crates."
},
{
"name": "cpuid-bool",
"version": "0.1.2",
"authors": "RustCrypto Developers",
"repository": "https://github.com/RustCrypto/utils",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "A lightweight no-std compatible alternative to is_x86_feature_detected"
},