-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyflow-cargo-sources.json
2686 lines (2686 loc) · 111 KB
/
pyflow-cargo-sources.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
[
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/addr2line/addr2line-0.15.1.crate",
"sha256": "03345e98af8f3d786b6d9f656ccfa6ac316d954e92bc4841f0bba20789d5fb5a",
"dest": "cargo/vendor/addr2line-0.15.1"
},
{
"type": "inline",
"contents": "{\"package\": \"03345e98af8f3d786b6d9f656ccfa6ac316d954e92bc4841f0bba20789d5fb5a\", \"files\": {}}",
"dest": "cargo/vendor/addr2line-0.15.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/adler/adler-1.0.2.crate",
"sha256": "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe",
"dest": "cargo/vendor/adler-1.0.2"
},
{
"type": "inline",
"contents": "{\"package\": \"f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe\", \"files\": {}}",
"dest": "cargo/vendor/adler-1.0.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/aho-corasick/aho-corasick-0.7.18.crate",
"sha256": "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f",
"dest": "cargo/vendor/aho-corasick-0.7.18"
},
{
"type": "inline",
"contents": "{\"package\": \"1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f\", \"files\": {}}",
"dest": "cargo/vendor/aho-corasick-0.7.18",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/ansi_term/ansi_term-0.11.0.crate",
"sha256": "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b",
"dest": "cargo/vendor/ansi_term-0.11.0"
},
{
"type": "inline",
"contents": "{\"package\": \"ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b\", \"files\": {}}",
"dest": "cargo/vendor/ansi_term-0.11.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/anyhow/anyhow-1.0.40.crate",
"sha256": "28b2cd92db5cbd74e8e5028f7e27dd7aa3090e89e4f2a197cc7c8dfb69c7063b",
"dest": "cargo/vendor/anyhow-1.0.40"
},
{
"type": "inline",
"contents": "{\"package\": \"28b2cd92db5cbd74e8e5028f7e27dd7aa3090e89e4f2a197cc7c8dfb69c7063b\", \"files\": {}}",
"dest": "cargo/vendor/anyhow-1.0.40",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/arrayvec/arrayvec-0.5.2.crate",
"sha256": "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b",
"dest": "cargo/vendor/arrayvec-0.5.2"
},
{
"type": "inline",
"contents": "{\"package\": \"23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b\", \"files\": {}}",
"dest": "cargo/vendor/arrayvec-0.5.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/atty/atty-0.2.14.crate",
"sha256": "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8",
"dest": "cargo/vendor/atty-0.2.14"
},
{
"type": "inline",
"contents": "{\"package\": \"d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8\", \"files\": {}}",
"dest": "cargo/vendor/atty-0.2.14",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/autocfg/autocfg-0.1.7.crate",
"sha256": "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2",
"dest": "cargo/vendor/autocfg-0.1.7"
},
{
"type": "inline",
"contents": "{\"package\": \"1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2\", \"files\": {}}",
"dest": "cargo/vendor/autocfg-0.1.7",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/autocfg/autocfg-1.0.1.crate",
"sha256": "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a",
"dest": "cargo/vendor/autocfg-1.0.1"
},
{
"type": "inline",
"contents": "{\"package\": \"cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a\", \"files\": {}}",
"dest": "cargo/vendor/autocfg-1.0.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/backtrace/backtrace-0.3.59.crate",
"sha256": "4717cfcbfaa661a0fd48f8453951837ae7e8f81e481fbb136e3202d72805a744",
"dest": "cargo/vendor/backtrace-0.3.59"
},
{
"type": "inline",
"contents": "{\"package\": \"4717cfcbfaa661a0fd48f8453951837ae7e8f81e481fbb136e3202d72805a744\", \"files\": {}}",
"dest": "cargo/vendor/backtrace-0.3.59",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/base64/base64-0.10.1.crate",
"sha256": "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e",
"dest": "cargo/vendor/base64-0.10.1"
},
{
"type": "inline",
"contents": "{\"package\": \"0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e\", \"files\": {}}",
"dest": "cargo/vendor/base64-0.10.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bitflags/bitflags-1.2.1.crate",
"sha256": "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693",
"dest": "cargo/vendor/bitflags-1.2.1"
},
{
"type": "inline",
"contents": "{\"package\": \"cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693\", \"files\": {}}",
"dest": "cargo/vendor/bitflags-1.2.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bumpalo/bumpalo-3.7.0.crate",
"sha256": "9c59e7af012c713f529e7a3ee57ce9b31ddd858d4b512923602f74608b009631",
"dest": "cargo/vendor/bumpalo-3.7.0"
},
{
"type": "inline",
"contents": "{\"package\": \"9c59e7af012c713f529e7a3ee57ce9b31ddd858d4b512923602f74608b009631\", \"files\": {}}",
"dest": "cargo/vendor/bumpalo-3.7.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/byteorder/byteorder-1.4.3.crate",
"sha256": "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610",
"dest": "cargo/vendor/byteorder-1.4.3"
},
{
"type": "inline",
"contents": "{\"package\": \"14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610\", \"files\": {}}",
"dest": "cargo/vendor/byteorder-1.4.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bytes/bytes-0.4.12.crate",
"sha256": "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c",
"dest": "cargo/vendor/bytes-0.4.12"
},
{
"type": "inline",
"contents": "{\"package\": \"206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c\", \"files\": {}}",
"dest": "cargo/vendor/bytes-0.4.12",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bzip2/bzip2-0.3.3.crate",
"sha256": "42b7c3cbf0fa9c1b82308d57191728ca0256cb821220f4e2fd410a72ade26e3b",
"dest": "cargo/vendor/bzip2-0.3.3"
},
{
"type": "inline",
"contents": "{\"package\": \"42b7c3cbf0fa9c1b82308d57191728ca0256cb821220f4e2fd410a72ade26e3b\", \"files\": {}}",
"dest": "cargo/vendor/bzip2-0.3.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/bzip2-sys/bzip2-sys-0.1.10+1.0.8.crate",
"sha256": "17fa3d1ac1ca21c5c4e36a97f3c3eb25084576f6fc47bf0139c1123434216c6c",
"dest": "cargo/vendor/bzip2-sys-0.1.10+1.0.8"
},
{
"type": "inline",
"contents": "{\"package\": \"17fa3d1ac1ca21c5c4e36a97f3c3eb25084576f6fc47bf0139c1123434216c6c\", \"files\": {}}",
"dest": "cargo/vendor/bzip2-sys-0.1.10+1.0.8",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cc/cc-1.0.68.crate",
"sha256": "4a72c244c1ff497a746a7e1fb3d14bd08420ecda70c8f25c7112f2781652d787",
"dest": "cargo/vendor/cc-1.0.68"
},
{
"type": "inline",
"contents": "{\"package\": \"4a72c244c1ff497a746a7e1fb3d14bd08420ecda70c8f25c7112f2781652d787\", \"files\": {}}",
"dest": "cargo/vendor/cc-1.0.68",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cfg-if/cfg-if-0.1.10.crate",
"sha256": "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822",
"dest": "cargo/vendor/cfg-if-0.1.10"
},
{
"type": "inline",
"contents": "{\"package\": \"4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822\", \"files\": {}}",
"dest": "cargo/vendor/cfg-if-0.1.10",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cfg-if/cfg-if-1.0.0.crate",
"sha256": "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd",
"dest": "cargo/vendor/cfg-if-1.0.0"
},
{
"type": "inline",
"contents": "{\"package\": \"baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd\", \"files\": {}}",
"dest": "cargo/vendor/cfg-if-1.0.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/clap/clap-2.33.3.crate",
"sha256": "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002",
"dest": "cargo/vendor/clap-2.33.3"
},
{
"type": "inline",
"contents": "{\"package\": \"37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002\", \"files\": {}}",
"dest": "cargo/vendor/clap-2.33.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cloudabi/cloudabi-0.0.3.crate",
"sha256": "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f",
"dest": "cargo/vendor/cloudabi-0.0.3"
},
{
"type": "inline",
"contents": "{\"package\": \"ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f\", \"files\": {}}",
"dest": "cargo/vendor/cloudabi-0.0.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cookie/cookie-0.12.0.crate",
"sha256": "888604f00b3db336d2af898ec3c1d5d0ddf5e6d462220f2ededc33a87ac4bbd5",
"dest": "cargo/vendor/cookie-0.12.0"
},
{
"type": "inline",
"contents": "{\"package\": \"888604f00b3db336d2af898ec3c1d5d0ddf5e6d462220f2ededc33a87ac4bbd5\", \"files\": {}}",
"dest": "cargo/vendor/cookie-0.12.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/cookie_store/cookie_store-0.7.0.crate",
"sha256": "46750b3f362965f197996c4448e4a0935e791bf7d6631bfce9ee0af3d24c919c",
"dest": "cargo/vendor/cookie_store-0.7.0"
},
{
"type": "inline",
"contents": "{\"package\": \"46750b3f362965f197996c4448e4a0935e791bf7d6631bfce9ee0af3d24c919c\", \"files\": {}}",
"dest": "cargo/vendor/cookie_store-0.7.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crc32fast/crc32fast-1.2.1.crate",
"sha256": "81156fece84ab6a9f2afdb109ce3ae577e42b1228441eded99bd77f627953b1a",
"dest": "cargo/vendor/crc32fast-1.2.1"
},
{
"type": "inline",
"contents": "{\"package\": \"81156fece84ab6a9f2afdb109ce3ae577e42b1228441eded99bd77f627953b1a\", \"files\": {}}",
"dest": "cargo/vendor/crc32fast-1.2.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crossbeam-deque/crossbeam-deque-0.7.3.crate",
"sha256": "9f02af974daeee82218205558e51ec8768b48cf524bd01d550abe5573a608285",
"dest": "cargo/vendor/crossbeam-deque-0.7.3"
},
{
"type": "inline",
"contents": "{\"package\": \"9f02af974daeee82218205558e51ec8768b48cf524bd01d550abe5573a608285\", \"files\": {}}",
"dest": "cargo/vendor/crossbeam-deque-0.7.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crossbeam-epoch/crossbeam-epoch-0.8.2.crate",
"sha256": "058ed274caafc1f60c4997b5fc07bf7dc7cca454af7c6e81edffe5f33f70dace",
"dest": "cargo/vendor/crossbeam-epoch-0.8.2"
},
{
"type": "inline",
"contents": "{\"package\": \"058ed274caafc1f60c4997b5fc07bf7dc7cca454af7c6e81edffe5f33f70dace\", \"files\": {}}",
"dest": "cargo/vendor/crossbeam-epoch-0.8.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crossbeam-queue/crossbeam-queue-0.2.3.crate",
"sha256": "774ba60a54c213d409d5353bda12d49cd68d14e45036a285234c8d6f91f92570",
"dest": "cargo/vendor/crossbeam-queue-0.2.3"
},
{
"type": "inline",
"contents": "{\"package\": \"774ba60a54c213d409d5353bda12d49cd68d14e45036a285234c8d6f91f92570\", \"files\": {}}",
"dest": "cargo/vendor/crossbeam-queue-0.2.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/crossbeam-utils/crossbeam-utils-0.7.2.crate",
"sha256": "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8",
"dest": "cargo/vendor/crossbeam-utils-0.7.2"
},
{
"type": "inline",
"contents": "{\"package\": \"c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8\", \"files\": {}}",
"dest": "cargo/vendor/crossbeam-utils-0.7.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/ct-logs/ct-logs-0.6.0.crate",
"sha256": "4d3686f5fa27dbc1d76c751300376e167c5a43387f44bb451fd1c24776e49113",
"dest": "cargo/vendor/ct-logs-0.6.0"
},
{
"type": "inline",
"contents": "{\"package\": \"4d3686f5fa27dbc1d76c751300376e167c5a43387f44bb451fd1c24776e49113\", \"files\": {}}",
"dest": "cargo/vendor/ct-logs-0.6.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/data-encoding/data-encoding-2.3.2.crate",
"sha256": "3ee2393c4a91429dffb4bedf19f4d6abf27d8a732c8ce4980305d782e5426d57",
"dest": "cargo/vendor/data-encoding-2.3.2"
},
{
"type": "inline",
"contents": "{\"package\": \"3ee2393c4a91429dffb4bedf19f4d6abf27d8a732c8ce4980305d782e5426d57\", \"files\": {}}",
"dest": "cargo/vendor/data-encoding-2.3.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/difference/difference-2.0.0.crate",
"sha256": "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198",
"dest": "cargo/vendor/difference-2.0.0"
},
{
"type": "inline",
"contents": "{\"package\": \"524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198\", \"files\": {}}",
"dest": "cargo/vendor/difference-2.0.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/directories/directories-2.0.2.crate",
"sha256": "551a778172a450d7fc12e629ca3b0428d00f6afa9a43da1b630d54604e97371c",
"dest": "cargo/vendor/directories-2.0.2"
},
{
"type": "inline",
"contents": "{\"package\": \"551a778172a450d7fc12e629ca3b0428d00f6afa9a43da1b630d54604e97371c\", \"files\": {}}",
"dest": "cargo/vendor/directories-2.0.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/dirs-sys/dirs-sys-0.3.6.crate",
"sha256": "03d86534ed367a67548dc68113a0f5db55432fdfbb6e6f9d77704397d95d5780",
"dest": "cargo/vendor/dirs-sys-0.3.6"
},
{
"type": "inline",
"contents": "{\"package\": \"03d86534ed367a67548dc68113a0f5db55432fdfbb6e6f9d77704397d95d5780\", \"files\": {}}",
"dest": "cargo/vendor/dirs-sys-0.3.6",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/downcast/downcast-0.10.0.crate",
"sha256": "4bb454f0228b18c7f4c3b0ebbee346ed9c52e7443b0999cd543ff3571205701d",
"dest": "cargo/vendor/downcast-0.10.0"
},
{
"type": "inline",
"contents": "{\"package\": \"4bb454f0228b18c7f4c3b0ebbee346ed9c52e7443b0999cd543ff3571205701d\", \"files\": {}}",
"dest": "cargo/vendor/downcast-0.10.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/dtoa/dtoa-0.4.8.crate",
"sha256": "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0",
"dest": "cargo/vendor/dtoa-0.4.8"
},
{
"type": "inline",
"contents": "{\"package\": \"56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0\", \"files\": {}}",
"dest": "cargo/vendor/dtoa-0.4.8",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/either/either-1.6.1.crate",
"sha256": "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457",
"dest": "cargo/vendor/either-1.6.1"
},
{
"type": "inline",
"contents": "{\"package\": \"e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457\", \"files\": {}}",
"dest": "cargo/vendor/either-1.6.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/encoding_rs/encoding_rs-0.8.28.crate",
"sha256": "80df024fbc5ac80f87dfef0d9f5209a252f2a497f7f42944cff24d8253cac065",
"dest": "cargo/vendor/encoding_rs-0.8.28"
},
{
"type": "inline",
"contents": "{\"package\": \"80df024fbc5ac80f87dfef0d9f5209a252f2a497f7f42944cff24d8253cac065\", \"files\": {}}",
"dest": "cargo/vendor/encoding_rs-0.8.28",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/failure/failure-0.1.8.crate",
"sha256": "d32e9bd16cc02eae7db7ef620b392808b89f6a5e16bb3497d159c6b92a0f4f86",
"dest": "cargo/vendor/failure-0.1.8"
},
{
"type": "inline",
"contents": "{\"package\": \"d32e9bd16cc02eae7db7ef620b392808b89f6a5e16bb3497d159c6b92a0f4f86\", \"files\": {}}",
"dest": "cargo/vendor/failure-0.1.8",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/failure_derive/failure_derive-0.1.8.crate",
"sha256": "aa4da3c766cd7a0db8242e326e9e4e081edd567072893ed320008189715366a4",
"dest": "cargo/vendor/failure_derive-0.1.8"
},
{
"type": "inline",
"contents": "{\"package\": \"aa4da3c766cd7a0db8242e326e9e4e081edd567072893ed320008189715366a4\", \"files\": {}}",
"dest": "cargo/vendor/failure_derive-0.1.8",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/filetime/filetime-0.2.14.crate",
"sha256": "1d34cfa13a63ae058bfa601fe9e313bbdb3746427c1459185464ce0fcf62e1e8",
"dest": "cargo/vendor/filetime-0.2.14"
},
{
"type": "inline",
"contents": "{\"package\": \"1d34cfa13a63ae058bfa601fe9e313bbdb3746427c1459185464ce0fcf62e1e8\", \"files\": {}}",
"dest": "cargo/vendor/filetime-0.2.14",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/flate2/flate2-1.0.20.crate",
"sha256": "cd3aec53de10fe96d7d8c565eb17f2c687bb5518a2ec453b5b1252964526abe0",
"dest": "cargo/vendor/flate2-1.0.20"
},
{
"type": "inline",
"contents": "{\"package\": \"cd3aec53de10fe96d7d8c565eb17f2c687bb5518a2ec453b5b1252964526abe0\", \"files\": {}}",
"dest": "cargo/vendor/flate2-1.0.20",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/float-cmp/float-cmp-0.8.0.crate",
"sha256": "e1267f4ac4f343772758f7b1bdcbe767c218bbab93bb432acbf5162bbf85a6c4",
"dest": "cargo/vendor/float-cmp-0.8.0"
},
{
"type": "inline",
"contents": "{\"package\": \"e1267f4ac4f343772758f7b1bdcbe767c218bbab93bb432acbf5162bbf85a6c4\", \"files\": {}}",
"dest": "cargo/vendor/float-cmp-0.8.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/fnv/fnv-1.0.7.crate",
"sha256": "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1",
"dest": "cargo/vendor/fnv-1.0.7"
},
{
"type": "inline",
"contents": "{\"package\": \"3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1\", \"files\": {}}",
"dest": "cargo/vendor/fnv-1.0.7",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/form_urlencoded/form_urlencoded-1.0.1.crate",
"sha256": "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191",
"dest": "cargo/vendor/form_urlencoded-1.0.1"
},
{
"type": "inline",
"contents": "{\"package\": \"5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191\", \"files\": {}}",
"dest": "cargo/vendor/form_urlencoded-1.0.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/fragile/fragile-1.0.0.crate",
"sha256": "69a039c3498dc930fe810151a34ba0c1c70b02b8625035592e74432f678591f2",
"dest": "cargo/vendor/fragile-1.0.0"
},
{
"type": "inline",
"contents": "{\"package\": \"69a039c3498dc930fe810151a34ba0c1c70b02b8625035592e74432f678591f2\", \"files\": {}}",
"dest": "cargo/vendor/fragile-1.0.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/fs_extra/fs_extra-1.2.0.crate",
"sha256": "2022715d62ab30faffd124d40b76f4134a550a87792276512b18d63272333394",
"dest": "cargo/vendor/fs_extra-1.2.0"
},
{
"type": "inline",
"contents": "{\"package\": \"2022715d62ab30faffd124d40b76f4134a550a87792276512b18d63272333394\", \"files\": {}}",
"dest": "cargo/vendor/fs_extra-1.2.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/fuchsia-cprng/fuchsia-cprng-0.1.1.crate",
"sha256": "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba",
"dest": "cargo/vendor/fuchsia-cprng-0.1.1"
},
{
"type": "inline",
"contents": "{\"package\": \"a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba\", \"files\": {}}",
"dest": "cargo/vendor/fuchsia-cprng-0.1.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/fuchsia-zircon/fuchsia-zircon-0.3.3.crate",
"sha256": "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82",
"dest": "cargo/vendor/fuchsia-zircon-0.3.3"
},
{
"type": "inline",
"contents": "{\"package\": \"2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82\", \"files\": {}}",
"dest": "cargo/vendor/fuchsia-zircon-0.3.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/fuchsia-zircon-sys/fuchsia-zircon-sys-0.3.3.crate",
"sha256": "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7",
"dest": "cargo/vendor/fuchsia-zircon-sys-0.3.3"
},
{
"type": "inline",
"contents": "{\"package\": \"3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7\", \"files\": {}}",
"dest": "cargo/vendor/fuchsia-zircon-sys-0.3.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/futures/futures-0.1.31.crate",
"sha256": "3a471a38ef8ed83cd6e40aa59c1ffe17db6855c18e3604d9c4ed8c08ebc28678",
"dest": "cargo/vendor/futures-0.1.31"
},
{
"type": "inline",
"contents": "{\"package\": \"3a471a38ef8ed83cd6e40aa59c1ffe17db6855c18e3604d9c4ed8c08ebc28678\", \"files\": {}}",
"dest": "cargo/vendor/futures-0.1.31",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/futures-cpupool/futures-cpupool-0.1.8.crate",
"sha256": "ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4",
"dest": "cargo/vendor/futures-cpupool-0.1.8"
},
{
"type": "inline",
"contents": "{\"package\": \"ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4\", \"files\": {}}",
"dest": "cargo/vendor/futures-cpupool-0.1.8",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/getrandom/getrandom-0.2.3.crate",
"sha256": "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753",
"dest": "cargo/vendor/getrandom-0.2.3"
},
{
"type": "inline",
"contents": "{\"package\": \"7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753\", \"files\": {}}",
"dest": "cargo/vendor/getrandom-0.2.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/gimli/gimli-0.24.0.crate",
"sha256": "0e4075386626662786ddb0ec9081e7c7eeb1ba31951f447ca780ef9f5d568189",
"dest": "cargo/vendor/gimli-0.24.0"
},
{
"type": "inline",
"contents": "{\"package\": \"0e4075386626662786ddb0ec9081e7c7eeb1ba31951f447ca780ef9f5d568189\", \"files\": {}}",
"dest": "cargo/vendor/gimli-0.24.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/h2/h2-0.1.26.crate",
"sha256": "a5b34c246847f938a410a03c5458c7fee2274436675e76d8b903c08efc29c462",
"dest": "cargo/vendor/h2-0.1.26"
},
{
"type": "inline",
"contents": "{\"package\": \"a5b34c246847f938a410a03c5458c7fee2274436675e76d8b903c08efc29c462\", \"files\": {}}",
"dest": "cargo/vendor/h2-0.1.26",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/hashbrown/hashbrown-0.9.1.crate",
"sha256": "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04",
"dest": "cargo/vendor/hashbrown-0.9.1"
},
{
"type": "inline",
"contents": "{\"package\": \"d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04\", \"files\": {}}",
"dest": "cargo/vendor/hashbrown-0.9.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/heck/heck-0.3.2.crate",
"sha256": "87cbf45460356b7deeb5e3415b5563308c0a9b057c85e12b06ad551f98d0a6ac",
"dest": "cargo/vendor/heck-0.3.2"
},
{
"type": "inline",
"contents": "{\"package\": \"87cbf45460356b7deeb5e3415b5563308c0a9b057c85e12b06ad551f98d0a6ac\", \"files\": {}}",
"dest": "cargo/vendor/heck-0.3.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/hermit-abi/hermit-abi-0.1.18.crate",
"sha256": "322f4de77956e22ed0e5032c359a0f1273f1f7f0d79bfa3b8ffbc730d7fbcc5c",
"dest": "cargo/vendor/hermit-abi-0.1.18"
},
{
"type": "inline",
"contents": "{\"package\": \"322f4de77956e22ed0e5032c359a0f1273f1f7f0d79bfa3b8ffbc730d7fbcc5c\", \"files\": {}}",
"dest": "cargo/vendor/hermit-abi-0.1.18",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/http/http-0.1.21.crate",
"sha256": "d6ccf5ede3a895d8856620237b2f02972c1bbc78d2965ad7fe8838d4a0ed41f0",
"dest": "cargo/vendor/http-0.1.21"
},
{
"type": "inline",
"contents": "{\"package\": \"d6ccf5ede3a895d8856620237b2f02972c1bbc78d2965ad7fe8838d4a0ed41f0\", \"files\": {}}",
"dest": "cargo/vendor/http-0.1.21",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/http-body/http-body-0.1.0.crate",
"sha256": "6741c859c1b2463a423a1dbce98d418e6c3c3fc720fb0d45528657320920292d",
"dest": "cargo/vendor/http-body-0.1.0"
},
{
"type": "inline",
"contents": "{\"package\": \"6741c859c1b2463a423a1dbce98d418e6c3c3fc720fb0d45528657320920292d\", \"files\": {}}",
"dest": "cargo/vendor/http-body-0.1.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/httparse/httparse-1.4.1.crate",
"sha256": "f3a87b616e37e93c22fb19bcd386f02f3af5ea98a25670ad0fce773de23c5e68",
"dest": "cargo/vendor/httparse-1.4.1"
},
{
"type": "inline",
"contents": "{\"package\": \"f3a87b616e37e93c22fb19bcd386f02f3af5ea98a25670ad0fce773de23c5e68\", \"files\": {}}",
"dest": "cargo/vendor/httparse-1.4.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/hyper/hyper-0.12.36.crate",
"sha256": "5c843caf6296fc1f93444735205af9ed4e109a539005abb2564ae1d6fad34c52",
"dest": "cargo/vendor/hyper-0.12.36"
},
{
"type": "inline",
"contents": "{\"package\": \"5c843caf6296fc1f93444735205af9ed4e109a539005abb2564ae1d6fad34c52\", \"files\": {}}",
"dest": "cargo/vendor/hyper-0.12.36",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/hyper-rustls/hyper-rustls-0.17.1.crate",
"sha256": "719d85c7df4a7f309a77d145340a063ea929dcb2e025bae46a80345cffec2952",
"dest": "cargo/vendor/hyper-rustls-0.17.1"
},
{
"type": "inline",
"contents": "{\"package\": \"719d85c7df4a7f309a77d145340a063ea929dcb2e025bae46a80345cffec2952\", \"files\": {}}",
"dest": "cargo/vendor/hyper-rustls-0.17.1",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/idna/idna-0.1.5.crate",
"sha256": "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e",
"dest": "cargo/vendor/idna-0.1.5"
},
{
"type": "inline",
"contents": "{\"package\": \"38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e\", \"files\": {}}",
"dest": "cargo/vendor/idna-0.1.5",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/idna/idna-0.2.3.crate",
"sha256": "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8",
"dest": "cargo/vendor/idna-0.2.3"
},
{
"type": "inline",
"contents": "{\"package\": \"418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8\", \"files\": {}}",
"dest": "cargo/vendor/idna-0.2.3",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/indexmap/indexmap-1.6.2.crate",
"sha256": "824845a0bf897a9042383849b02c1bc219c2383772efcd5c6f9766fa4b81aef3",
"dest": "cargo/vendor/indexmap-1.6.2"
},
{
"type": "inline",
"contents": "{\"package\": \"824845a0bf897a9042383849b02c1bc219c2383772efcd5c6f9766fa4b81aef3\", \"files\": {}}",
"dest": "cargo/vendor/indexmap-1.6.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/iovec/iovec-0.1.4.crate",
"sha256": "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e",
"dest": "cargo/vendor/iovec-0.1.4"
},
{
"type": "inline",
"contents": "{\"package\": \"b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e\", \"files\": {}}",
"dest": "cargo/vendor/iovec-0.1.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/itoa/itoa-0.4.7.crate",
"sha256": "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736",
"dest": "cargo/vendor/itoa-0.4.7"
},
{
"type": "inline",
"contents": "{\"package\": \"dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736\", \"files\": {}}",
"dest": "cargo/vendor/itoa-0.4.7",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/js-sys/js-sys-0.3.51.crate",
"sha256": "83bdfbace3a0e81a4253f73b49e960b053e396a11012cbd49b9b74d6a2b67062",
"dest": "cargo/vendor/js-sys-0.3.51"
},
{
"type": "inline",
"contents": "{\"package\": \"83bdfbace3a0e81a4253f73b49e960b053e396a11012cbd49b9b74d6a2b67062\", \"files\": {}}",
"dest": "cargo/vendor/js-sys-0.3.51",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/kernel32-sys/kernel32-sys-0.2.2.crate",
"sha256": "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d",
"dest": "cargo/vendor/kernel32-sys-0.2.2"
},
{
"type": "inline",
"contents": "{\"package\": \"7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d\", \"files\": {}}",
"dest": "cargo/vendor/kernel32-sys-0.2.2",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/lazy_static/lazy_static-1.4.0.crate",
"sha256": "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646",
"dest": "cargo/vendor/lazy_static-1.4.0"
},
{
"type": "inline",
"contents": "{\"package\": \"e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646\", \"files\": {}}",
"dest": "cargo/vendor/lazy_static-1.4.0",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/lexical-core/lexical-core-0.7.6.crate",
"sha256": "6607c62aa161d23d17a9072cc5da0be67cdfc89d3afb1e8d9c842bebc2525ffe",
"dest": "cargo/vendor/lexical-core-0.7.6"
},
{
"type": "inline",
"contents": "{\"package\": \"6607c62aa161d23d17a9072cc5da0be67cdfc89d3afb1e8d9c842bebc2525ffe\", \"files\": {}}",
"dest": "cargo/vendor/lexical-core-0.7.6",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/libc/libc-0.2.95.crate",
"sha256": "789da6d93f1b866ffe175afc5322a4d76c038605a1c3319bb57b06967ca98a36",
"dest": "cargo/vendor/libc-0.2.95"
},
{
"type": "inline",
"contents": "{\"package\": \"789da6d93f1b866ffe175afc5322a4d76c038605a1c3319bb57b06967ca98a36\", \"files\": {}}",
"dest": "cargo/vendor/libc-0.2.95",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/lock_api/lock_api-0.3.4.crate",
"sha256": "c4da24a77a3d8a6d4862d95f72e6fdb9c09a643ecdb402d754004a557f2bec75",
"dest": "cargo/vendor/lock_api-0.3.4"
},
{
"type": "inline",
"contents": "{\"package\": \"c4da24a77a3d8a6d4862d95f72e6fdb9c09a643ecdb402d754004a557f2bec75\", \"files\": {}}",
"dest": "cargo/vendor/lock_api-0.3.4",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/log/log-0.4.14.crate",
"sha256": "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710",
"dest": "cargo/vendor/log-0.4.14"
},
{
"type": "inline",
"contents": "{\"package\": \"51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710\", \"files\": {}}",
"dest": "cargo/vendor/log-0.4.14",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/lzma-sys/lzma-sys-0.1.17.crate",
"sha256": "bdb4b7c3eddad11d3af9e86c487607d2d2442d185d848575365c4856ba96d619",
"dest": "cargo/vendor/lzma-sys-0.1.17"
},
{
"type": "inline",
"contents": "{\"package\": \"bdb4b7c3eddad11d3af9e86c487607d2d2442d185d848575365c4856ba96d619\", \"files\": {}}",
"dest": "cargo/vendor/lzma-sys-0.1.17",
"dest-filename": ".cargo-checksum.json"
},
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://static.crates.io/crates/matches/matches-0.1.8.crate",
"sha256": "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08",
"dest": "cargo/vendor/matches-0.1.8"
},
{
"type": "inline",
"contents": "{\"package\": \"7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08\", \"files\": {}}",
"dest": "cargo/vendor/matches-0.1.8",